@forge/cli-shared 0.0.0-experimental-c3d0263 → 0.0.0-experimental-869511d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +196 -3
- package/out/config/config-file.js +8 -8
- package/out/config/config.d.ts +2 -1
- package/out/config/config.d.ts.map +1 -1
- package/out/config/config.js +3 -2
- package/out/graphql/graphql-types.d.ts +1096 -417
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +69 -22
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -1
- package/package.json +6 -6
|
@@ -184,6 +184,12 @@ export declare type ActivityConnection = {
|
|
|
184
184
|
edges?: Maybe<Array<Maybe<ActivityItemEdge>>>;
|
|
185
185
|
pageInfo: ActivityPageInfo;
|
|
186
186
|
};
|
|
187
|
+
export declare type ActivityContributor = {
|
|
188
|
+
__typename?: 'ActivityContributor';
|
|
189
|
+
profile?: Maybe<User>;
|
|
190
|
+
lastAccessedDate: Scalars['DateTime'];
|
|
191
|
+
count?: Maybe<Scalars['Int']>;
|
|
192
|
+
};
|
|
187
193
|
export declare type ActivityEdge = {
|
|
188
194
|
__typename?: 'ActivityEdge';
|
|
189
195
|
cursor: Scalars['String'];
|
|
@@ -242,10 +248,10 @@ export declare type ActivityObject = {
|
|
|
242
248
|
type: Scalars['String'];
|
|
243
249
|
product: Scalars['String'];
|
|
244
250
|
subProduct?: Maybe<Scalars['String']>;
|
|
245
|
-
contributors?: Maybe<Array<
|
|
251
|
+
contributors?: Maybe<Array<ActivityContributor>>;
|
|
246
252
|
data?: Maybe<ActivityObjectData>;
|
|
247
253
|
};
|
|
248
|
-
export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
254
|
+
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
249
255
|
export declare enum ActivityObjectType {
|
|
250
256
|
Site = "SITE",
|
|
251
257
|
Project = "PROJECT",
|
|
@@ -311,7 +317,10 @@ export declare enum ApiGroup {
|
|
|
311
317
|
DevopsService = "DEVOPS_SERVICE",
|
|
312
318
|
DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
|
|
313
319
|
Teams = "TEAMS",
|
|
314
|
-
ContentPlatformApi = "CONTENT_PLATFORM_API"
|
|
320
|
+
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
321
|
+
Identity = "IDENTITY",
|
|
322
|
+
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
323
|
+
Help = "HELP"
|
|
315
324
|
}
|
|
316
325
|
export declare type App = {
|
|
317
326
|
__typename?: 'App';
|
|
@@ -495,7 +504,7 @@ export declare type AppInstallation = {
|
|
|
495
504
|
__typename?: 'AppInstallation';
|
|
496
505
|
id: Scalars['ID'];
|
|
497
506
|
installationContext: Scalars['ID'];
|
|
498
|
-
createdAt: Scalars['
|
|
507
|
+
createdAt: Scalars['DateTime'];
|
|
499
508
|
createdBy?: Maybe<User>;
|
|
500
509
|
version?: Maybe<AppVersion>;
|
|
501
510
|
app?: Maybe<App>;
|
|
@@ -544,6 +553,7 @@ export declare type AppInstallationInput = {
|
|
|
544
553
|
environmentKey: Scalars['String'];
|
|
545
554
|
async?: Maybe<Scalars['Boolean']>;
|
|
546
555
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
556
|
+
provisionRequestId?: Maybe<Scalars['ID']>;
|
|
547
557
|
};
|
|
548
558
|
export declare type AppInstallationLicense = {
|
|
549
559
|
__typename?: 'AppInstallationLicense';
|
|
@@ -795,6 +805,7 @@ export declare type AppUninstallationInput = {
|
|
|
795
805
|
environmentKey: Scalars['String'];
|
|
796
806
|
async?: Maybe<Scalars['Boolean']>;
|
|
797
807
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
808
|
+
sourceBillingType?: Maybe<SourceBillingType>;
|
|
798
809
|
};
|
|
799
810
|
export declare type AppUninstallationResponse = Payload & {
|
|
800
811
|
__typename?: 'AppUninstallationResponse';
|
|
@@ -851,6 +862,66 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
|
|
|
851
862
|
success: Scalars['Boolean'];
|
|
852
863
|
errors?: Maybe<Array<MutationError>>;
|
|
853
864
|
};
|
|
865
|
+
export declare type AriGraph = {
|
|
866
|
+
__typename?: 'AriGraph';
|
|
867
|
+
relationship?: Maybe<AriGraphRelationship>;
|
|
868
|
+
relationships?: Maybe<AriGraphRelationshipConnection>;
|
|
869
|
+
};
|
|
870
|
+
export declare type AriGraphRelationshipArgs = {
|
|
871
|
+
from: Scalars['ID'];
|
|
872
|
+
type: Scalars['ID'];
|
|
873
|
+
to: Scalars['ID'];
|
|
874
|
+
};
|
|
875
|
+
export declare type AriGraphRelationshipsArgs = {
|
|
876
|
+
filter: AriGraphRelationshipsFilter;
|
|
877
|
+
first?: Maybe<Scalars['Int']>;
|
|
878
|
+
after?: Maybe<Scalars['String']>;
|
|
879
|
+
};
|
|
880
|
+
export declare type AriGraphCreateRelationshipInput = {
|
|
881
|
+
from: Scalars['ID'];
|
|
882
|
+
to: Scalars['ID'];
|
|
883
|
+
type: Scalars['ID'];
|
|
884
|
+
};
|
|
885
|
+
export declare type AriGraphCreateRelationshipPayload = Payload & {
|
|
886
|
+
__typename?: 'AriGraphCreateRelationshipPayload';
|
|
887
|
+
success: Scalars['Boolean'];
|
|
888
|
+
errors?: Maybe<Array<MutationError>>;
|
|
889
|
+
};
|
|
890
|
+
export declare type AriGraphMutation = {
|
|
891
|
+
__typename?: 'AriGraphMutation';
|
|
892
|
+
createRelationship?: Maybe<AriGraphCreateRelationshipPayload>;
|
|
893
|
+
};
|
|
894
|
+
export declare type AriGraphMutationCreateRelationshipArgs = {
|
|
895
|
+
input: AriGraphCreateRelationshipInput;
|
|
896
|
+
};
|
|
897
|
+
export declare type AriGraphRelationship = {
|
|
898
|
+
__typename?: 'AriGraphRelationship';
|
|
899
|
+
from: AriGraphRelationshipNode;
|
|
900
|
+
type: Scalars['ID'];
|
|
901
|
+
to: AriGraphRelationshipNode;
|
|
902
|
+
lastUpdated: Scalars['DateTime'];
|
|
903
|
+
};
|
|
904
|
+
export declare type AriGraphRelationshipConnection = {
|
|
905
|
+
__typename?: 'AriGraphRelationshipConnection';
|
|
906
|
+
nodes?: Maybe<Array<Maybe<AriGraphRelationship>>>;
|
|
907
|
+
edges?: Maybe<Array<Maybe<AriGraphRelationshipEdge>>>;
|
|
908
|
+
pageInfo: PageInfo;
|
|
909
|
+
};
|
|
910
|
+
export declare type AriGraphRelationshipEdge = {
|
|
911
|
+
__typename?: 'AriGraphRelationshipEdge';
|
|
912
|
+
cursor: Scalars['String'];
|
|
913
|
+
node: AriGraphRelationship;
|
|
914
|
+
};
|
|
915
|
+
export declare type AriGraphRelationshipNode = {
|
|
916
|
+
__typename?: 'AriGraphRelationshipNode';
|
|
917
|
+
id: Scalars['ID'];
|
|
918
|
+
data?: Maybe<DeploymentSummary>;
|
|
919
|
+
};
|
|
920
|
+
export declare type AriGraphRelationshipsFilter = {
|
|
921
|
+
type: Scalars['ID'];
|
|
922
|
+
from?: Maybe<Scalars['ID']>;
|
|
923
|
+
to?: Maybe<Scalars['ID']>;
|
|
924
|
+
};
|
|
854
925
|
export declare type ArjConfiguration = {
|
|
855
926
|
__typename?: 'ArjConfiguration';
|
|
856
927
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -958,6 +1029,7 @@ export declare type AuxEffectsInvocationPayload = {
|
|
|
958
1029
|
effects: Array<Scalars['JSON']>;
|
|
959
1030
|
context: Scalars['JSON'];
|
|
960
1031
|
contextToken?: Maybe<Scalars['String']>;
|
|
1032
|
+
extensionPayload?: Maybe<Scalars['JSON']>;
|
|
961
1033
|
config?: Maybe<Scalars['JSON']>;
|
|
962
1034
|
};
|
|
963
1035
|
export declare type AuxEffectsResult = {
|
|
@@ -974,6 +1046,34 @@ export declare type AvatarInput = {
|
|
|
974
1046
|
webUrl?: Maybe<Scalars['String']>;
|
|
975
1047
|
description?: Maybe<Scalars['String']>;
|
|
976
1048
|
};
|
|
1049
|
+
export declare type Avocado = {
|
|
1050
|
+
__typename?: 'Avocado';
|
|
1051
|
+
questionsByAri?: Maybe<Array<Maybe<AvocadoQuestion>>>;
|
|
1052
|
+
answersByAri?: Maybe<Array<Maybe<AvocadoAnswer>>>;
|
|
1053
|
+
};
|
|
1054
|
+
export declare type AvocadoQuestionsByAriArgs = {
|
|
1055
|
+
aris: Array<Maybe<Scalars['ID']>>;
|
|
1056
|
+
};
|
|
1057
|
+
export declare type AvocadoAnswersByAriArgs = {
|
|
1058
|
+
aris: Array<Maybe<Scalars['ID']>>;
|
|
1059
|
+
};
|
|
1060
|
+
export declare type AvocadoAnswer = Node & {
|
|
1061
|
+
__typename?: 'AvocadoAnswer';
|
|
1062
|
+
id: Scalars['ID'];
|
|
1063
|
+
text: Scalars['String'];
|
|
1064
|
+
siteName: Scalars['String'];
|
|
1065
|
+
url: Scalars['String'];
|
|
1066
|
+
iconUrl: Scalars['String'];
|
|
1067
|
+
};
|
|
1068
|
+
export declare type AvocadoQuestion = Node & {
|
|
1069
|
+
__typename?: 'AvocadoQuestion';
|
|
1070
|
+
id: Scalars['ID'];
|
|
1071
|
+
text: Scalars['String'];
|
|
1072
|
+
siteName: Scalars['String'];
|
|
1073
|
+
url: Scalars['String'];
|
|
1074
|
+
iconUrl: Scalars['String'];
|
|
1075
|
+
isAnswered: Scalars['Boolean'];
|
|
1076
|
+
};
|
|
977
1077
|
export declare type Backlog = {
|
|
978
1078
|
__typename?: 'Backlog';
|
|
979
1079
|
boardIssueListKey?: Maybe<Scalars['String']>;
|
|
@@ -1000,7 +1100,9 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1000
1100
|
status?: Maybe<Scalars['String']>;
|
|
1001
1101
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
1002
1102
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
1103
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
1003
1104
|
imageUri?: Maybe<Scalars['String']>;
|
|
1105
|
+
dependents?: Maybe<Array<Maybe<BoardFeatureView>>>;
|
|
1004
1106
|
};
|
|
1005
1107
|
export declare enum BitbucketPermission {
|
|
1006
1108
|
Admin = "ADMIN"
|
|
@@ -1136,8 +1238,9 @@ export declare enum BoardFeatureToggleStatus {
|
|
|
1136
1238
|
Disabled = "DISABLED"
|
|
1137
1239
|
}
|
|
1138
1240
|
export declare type BoardFeatureView = BasicBoardFeatureView | EstimationBoardFeatureView;
|
|
1139
|
-
export declare type BoardScope = {
|
|
1241
|
+
export declare type BoardScope = Node & {
|
|
1140
1242
|
__typename?: 'BoardScope';
|
|
1243
|
+
id: Scalars['ID'];
|
|
1141
1244
|
board?: Maybe<SoftwareBoard>;
|
|
1142
1245
|
userSwimlaneStrategy?: Maybe<SwimlaneStrategy>;
|
|
1143
1246
|
backlog?: Maybe<Backlog>;
|
|
@@ -1154,6 +1257,7 @@ export declare type BoardScope = {
|
|
|
1154
1257
|
startSprintPrototype?: Maybe<Sprint>;
|
|
1155
1258
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1156
1259
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1260
|
+
name?: Maybe<Scalars['String']>;
|
|
1157
1261
|
};
|
|
1158
1262
|
export declare type BoardScopeSprintsArgs = {
|
|
1159
1263
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1172,6 +1276,16 @@ export declare type BoardScopeFilteredCardIdsArgs = {
|
|
|
1172
1276
|
issueIds: Array<Maybe<Scalars['ID']>>;
|
|
1173
1277
|
customFilterIds: Array<Maybe<Scalars['ID']>>;
|
|
1174
1278
|
};
|
|
1279
|
+
export declare type BoardScopeConnection = {
|
|
1280
|
+
__typename?: 'BoardScopeConnection';
|
|
1281
|
+
edges?: Maybe<Array<Maybe<BoardScopeEdge>>>;
|
|
1282
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1283
|
+
};
|
|
1284
|
+
export declare type BoardScopeEdge = {
|
|
1285
|
+
__typename?: 'BoardScopeEdge';
|
|
1286
|
+
node?: Maybe<BoardScope>;
|
|
1287
|
+
cursor?: Maybe<Scalars['String']>;
|
|
1288
|
+
};
|
|
1175
1289
|
export declare enum BuiltinPolarisIdeaField {
|
|
1176
1290
|
Assignee = "ASSIGNEE",
|
|
1177
1291
|
Created = "CREATED",
|
|
@@ -1343,6 +1457,7 @@ export declare type CardStatus = {
|
|
|
1343
1457
|
export declare type CardType = {
|
|
1344
1458
|
__typename?: 'CardType';
|
|
1345
1459
|
id?: Maybe<Scalars['ID']>;
|
|
1460
|
+
externalId?: Maybe<Scalars['ID']>;
|
|
1346
1461
|
name?: Maybe<Scalars['String']>;
|
|
1347
1462
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1348
1463
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
@@ -1570,6 +1685,9 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1570
1685
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1571
1686
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1572
1687
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1688
|
+
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
1689
|
+
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
1690
|
+
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
1573
1691
|
};
|
|
1574
1692
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1575
1693
|
cloudId: Scalars['ID'];
|
|
@@ -1719,6 +1837,15 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
|
1719
1837
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1720
1838
|
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1721
1839
|
};
|
|
1840
|
+
export declare type CompassCatalogMutationApiCreateCustomFieldDefinitionArgs = {
|
|
1841
|
+
input: CompassCreateCustomFieldDefinitionInput;
|
|
1842
|
+
};
|
|
1843
|
+
export declare type CompassCatalogMutationApiUpdateCustomFieldDefinitionArgs = {
|
|
1844
|
+
input: CompassUpdateCustomFieldDefinitionInput;
|
|
1845
|
+
};
|
|
1846
|
+
export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
1847
|
+
input: CompassDeleteCustomFieldDefinitionInput;
|
|
1848
|
+
};
|
|
1722
1849
|
export declare type CompassCatalogQueryApi = {
|
|
1723
1850
|
__typename?: 'CompassCatalogQueryApi';
|
|
1724
1851
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1733,6 +1860,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1733
1860
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1734
1861
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1735
1862
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1863
|
+
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
1736
1864
|
};
|
|
1737
1865
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1738
1866
|
id: Scalars['ID'];
|
|
@@ -1780,6 +1908,9 @@ export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
1780
1908
|
eventType: CompassEventType;
|
|
1781
1909
|
externalEventSourceId: Scalars['ID'];
|
|
1782
1910
|
};
|
|
1911
|
+
export declare type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
1912
|
+
query: CompassCustomFieldDefinitionsQuery;
|
|
1913
|
+
};
|
|
1783
1914
|
export declare type CompassChangeMetadata = {
|
|
1784
1915
|
__typename?: 'CompassChangeMetadata';
|
|
1785
1916
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1809,6 +1940,7 @@ export declare type CompassComponent = Node & {
|
|
|
1809
1940
|
eventSources?: Maybe<Array<EventSource>>;
|
|
1810
1941
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1811
1942
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
1943
|
+
customFields?: Maybe<Array<CompassCustomField>>;
|
|
1812
1944
|
};
|
|
1813
1945
|
export declare type CompassComponentRelationshipsArgs = {
|
|
1814
1946
|
query?: Maybe<CompassRelationshipQuery>;
|
|
@@ -1885,6 +2017,12 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
1885
2017
|
externalEventSourceId: Scalars['ID'];
|
|
1886
2018
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
1887
2019
|
};
|
|
2020
|
+
export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
2021
|
+
cloudId: Scalars['ID'];
|
|
2022
|
+
name: Scalars['String'];
|
|
2023
|
+
description?: Maybe<Scalars['String']>;
|
|
2024
|
+
componentTypes: Array<CompassComponentType>;
|
|
2025
|
+
};
|
|
1888
2026
|
export declare type CompassCreateCustomEventInput = {
|
|
1889
2027
|
displayName: Scalars['String'];
|
|
1890
2028
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -1894,6 +2032,29 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
1894
2032
|
externalEventSourceId: Scalars['ID'];
|
|
1895
2033
|
customEventProperties: CompassCustomEventPropertiesInput;
|
|
1896
2034
|
};
|
|
2035
|
+
export declare type CompassCreateCustomFieldDefinitionInput = {
|
|
2036
|
+
booleanFieldDefinition?: Maybe<CompassCreateCustomBooleanFieldDefinitionInput>;
|
|
2037
|
+
textFieldDefinition?: Maybe<CompassCreateCustomTextFieldDefinitionInput>;
|
|
2038
|
+
numberFieldDefinition?: Maybe<CompassCreateCustomNumberFieldDefinitionInput>;
|
|
2039
|
+
};
|
|
2040
|
+
export declare type CompassCreateCustomFieldDefinitionPayload = Payload & {
|
|
2041
|
+
__typename?: 'CompassCreateCustomFieldDefinitionPayload';
|
|
2042
|
+
success: Scalars['Boolean'];
|
|
2043
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2044
|
+
customFieldDefinition?: Maybe<CompassCustomFieldDefinition>;
|
|
2045
|
+
};
|
|
2046
|
+
export declare type CompassCreateCustomNumberFieldDefinitionInput = {
|
|
2047
|
+
cloudId: Scalars['ID'];
|
|
2048
|
+
name: Scalars['String'];
|
|
2049
|
+
description?: Maybe<Scalars['String']>;
|
|
2050
|
+
componentTypes: Array<CompassComponentType>;
|
|
2051
|
+
};
|
|
2052
|
+
export declare type CompassCreateCustomTextFieldDefinitionInput = {
|
|
2053
|
+
cloudId: Scalars['ID'];
|
|
2054
|
+
name: Scalars['String'];
|
|
2055
|
+
description?: Maybe<Scalars['String']>;
|
|
2056
|
+
componentTypes: Array<CompassComponentType>;
|
|
2057
|
+
};
|
|
1897
2058
|
export declare type CompassCreateDeploymentEventInput = {
|
|
1898
2059
|
updateSequenceNumber: Scalars['Long'];
|
|
1899
2060
|
displayName: Scalars['String'];
|
|
@@ -2003,6 +2164,22 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
2003
2164
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
2004
2165
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
2005
2166
|
}
|
|
2167
|
+
export declare type CompassCustomBooleanField = CompassCustomField & {
|
|
2168
|
+
__typename?: 'CompassCustomBooleanField';
|
|
2169
|
+
definition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2170
|
+
booleanValue?: Maybe<Scalars['Boolean']>;
|
|
2171
|
+
};
|
|
2172
|
+
export declare type CompassCustomBooleanFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
2173
|
+
__typename?: 'CompassCustomBooleanFieldDefinition';
|
|
2174
|
+
id: Scalars['ID'];
|
|
2175
|
+
name?: Maybe<Scalars['String']>;
|
|
2176
|
+
description?: Maybe<Scalars['String']>;
|
|
2177
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2178
|
+
};
|
|
2179
|
+
export declare type CompassCustomBooleanFieldInput = {
|
|
2180
|
+
definitionId: Scalars['ID'];
|
|
2181
|
+
booleanValue: Scalars['Boolean'];
|
|
2182
|
+
};
|
|
2006
2183
|
export declare type CompassCustomEvent = CompassEvent & {
|
|
2007
2184
|
__typename?: 'CompassCustomEvent';
|
|
2008
2185
|
eventType: CompassEventType;
|
|
@@ -2027,6 +2204,68 @@ export declare type CompassCustomEventPropertiesInput = {
|
|
|
2027
2204
|
id: Scalars['ID'];
|
|
2028
2205
|
icon: CompassCustomEventIcon;
|
|
2029
2206
|
};
|
|
2207
|
+
export declare type CompassCustomField = {
|
|
2208
|
+
definition?: Maybe<CompassCustomFieldDefinition>;
|
|
2209
|
+
};
|
|
2210
|
+
export declare type CompassCustomFieldDefinition = {
|
|
2211
|
+
id: Scalars['ID'];
|
|
2212
|
+
name?: Maybe<Scalars['String']>;
|
|
2213
|
+
description?: Maybe<Scalars['String']>;
|
|
2214
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2215
|
+
};
|
|
2216
|
+
export declare type CompassCustomFieldDefinitionEdge = {
|
|
2217
|
+
__typename?: 'CompassCustomFieldDefinitionEdge';
|
|
2218
|
+
cursor: Scalars['String'];
|
|
2219
|
+
node?: Maybe<CompassCustomFieldDefinition>;
|
|
2220
|
+
};
|
|
2221
|
+
export declare type CompassCustomFieldDefinitionsConnection = {
|
|
2222
|
+
__typename?: 'CompassCustomFieldDefinitionsConnection';
|
|
2223
|
+
edges?: Maybe<Array<CompassCustomFieldDefinitionEdge>>;
|
|
2224
|
+
nodes?: Maybe<Array<CompassCustomFieldDefinition>>;
|
|
2225
|
+
pageInfo: PageInfo;
|
|
2226
|
+
};
|
|
2227
|
+
export declare type CompassCustomFieldDefinitionsQuery = {
|
|
2228
|
+
cloudId: Scalars['ID'];
|
|
2229
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2230
|
+
};
|
|
2231
|
+
export declare type CompassCustomFieldDefinitionsResult = CompassCustomFieldDefinitionsConnection | QueryError;
|
|
2232
|
+
export declare type CompassCustomFieldInput = {
|
|
2233
|
+
booleanField?: Maybe<CompassCustomBooleanFieldInput>;
|
|
2234
|
+
textField?: Maybe<CompassCustomTextFieldInput>;
|
|
2235
|
+
numberField?: Maybe<CompassCustomNumberFieldInput>;
|
|
2236
|
+
};
|
|
2237
|
+
export declare type CompassCustomNumberField = CompassCustomField & {
|
|
2238
|
+
__typename?: 'CompassCustomNumberField';
|
|
2239
|
+
definition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
2240
|
+
numberValue?: Maybe<Scalars['Float']>;
|
|
2241
|
+
};
|
|
2242
|
+
export declare type CompassCustomNumberFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
2243
|
+
__typename?: 'CompassCustomNumberFieldDefinition';
|
|
2244
|
+
id: Scalars['ID'];
|
|
2245
|
+
name?: Maybe<Scalars['String']>;
|
|
2246
|
+
description?: Maybe<Scalars['String']>;
|
|
2247
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2248
|
+
};
|
|
2249
|
+
export declare type CompassCustomNumberFieldInput = {
|
|
2250
|
+
definitionId: Scalars['ID'];
|
|
2251
|
+
numberValue?: Maybe<Scalars['Float']>;
|
|
2252
|
+
};
|
|
2253
|
+
export declare type CompassCustomTextField = CompassCustomField & {
|
|
2254
|
+
__typename?: 'CompassCustomTextField';
|
|
2255
|
+
definition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
2256
|
+
textValue?: Maybe<Scalars['String']>;
|
|
2257
|
+
};
|
|
2258
|
+
export declare type CompassCustomTextFieldDefinition = CompassCustomFieldDefinition & Node & {
|
|
2259
|
+
__typename?: 'CompassCustomTextFieldDefinition';
|
|
2260
|
+
id: Scalars['ID'];
|
|
2261
|
+
name?: Maybe<Scalars['String']>;
|
|
2262
|
+
description?: Maybe<Scalars['String']>;
|
|
2263
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2264
|
+
};
|
|
2265
|
+
export declare type CompassCustomTextFieldInput = {
|
|
2266
|
+
definitionId: Scalars['ID'];
|
|
2267
|
+
textValue?: Maybe<Scalars['String']>;
|
|
2268
|
+
};
|
|
2030
2269
|
export declare type CompassDeleteAnnouncementInput = {
|
|
2031
2270
|
cloudId: Scalars['ID'];
|
|
2032
2271
|
id: Scalars['ID'];
|
|
@@ -2037,6 +2276,15 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
2037
2276
|
success: Scalars['Boolean'];
|
|
2038
2277
|
errors?: Maybe<Array<MutationError>>;
|
|
2039
2278
|
};
|
|
2279
|
+
export declare type CompassDeleteCustomFieldDefinitionInput = {
|
|
2280
|
+
id: Scalars['ID'];
|
|
2281
|
+
};
|
|
2282
|
+
export declare type CompassDeleteCustomFieldDefinitionPayload = Payload & {
|
|
2283
|
+
__typename?: 'CompassDeleteCustomFieldDefinitionPayload';
|
|
2284
|
+
success: Scalars['Boolean'];
|
|
2285
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2286
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
2287
|
+
};
|
|
2040
2288
|
export declare type CompassDeleteMetricDefinitionInput = {
|
|
2041
2289
|
id: Scalars['ID'];
|
|
2042
2290
|
};
|
|
@@ -2717,6 +2965,35 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
2717
2965
|
success: Scalars['Boolean'];
|
|
2718
2966
|
errors?: Maybe<Array<MutationError>>;
|
|
2719
2967
|
};
|
|
2968
|
+
export declare type CompassUpdateCustomBooleanFieldDefinitionInput = {
|
|
2969
|
+
id: Scalars['ID'];
|
|
2970
|
+
name?: Maybe<Scalars['String']>;
|
|
2971
|
+
description?: Maybe<Scalars['String']>;
|
|
2972
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2973
|
+
};
|
|
2974
|
+
export declare type CompassUpdateCustomFieldDefinitionInput = {
|
|
2975
|
+
booleanFieldDefinition?: Maybe<CompassUpdateCustomBooleanFieldDefinitionInput>;
|
|
2976
|
+
textFieldDefinition?: Maybe<CompassUpdateCustomTextFieldDefinitionInput>;
|
|
2977
|
+
numberFieldDefinition?: Maybe<CompassUpdateCustomNumberFieldDefinitionInput>;
|
|
2978
|
+
};
|
|
2979
|
+
export declare type CompassUpdateCustomFieldDefinitionPayload = Payload & {
|
|
2980
|
+
__typename?: 'CompassUpdateCustomFieldDefinitionPayload';
|
|
2981
|
+
success: Scalars['Boolean'];
|
|
2982
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2983
|
+
customFieldDefinition?: Maybe<CompassCustomFieldDefinition>;
|
|
2984
|
+
};
|
|
2985
|
+
export declare type CompassUpdateCustomNumberFieldDefinitionInput = {
|
|
2986
|
+
id: Scalars['ID'];
|
|
2987
|
+
name?: Maybe<Scalars['String']>;
|
|
2988
|
+
description?: Maybe<Scalars['String']>;
|
|
2989
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2990
|
+
};
|
|
2991
|
+
export declare type CompassUpdateCustomTextFieldDefinitionInput = {
|
|
2992
|
+
id: Scalars['ID'];
|
|
2993
|
+
name?: Maybe<Scalars['String']>;
|
|
2994
|
+
description?: Maybe<Scalars['String']>;
|
|
2995
|
+
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
2996
|
+
};
|
|
2720
2997
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
2721
2998
|
id: Scalars['ID'];
|
|
2722
2999
|
name?: Maybe<Scalars['String']>;
|
|
@@ -2818,22 +3095,14 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2818
3095
|
errors?: Maybe<Array<MutationError>>;
|
|
2819
3096
|
node?: Maybe<Scalars['Int']>;
|
|
2820
3097
|
};
|
|
2821
|
-
export declare type
|
|
2822
|
-
id: Scalars['ID'];
|
|
2823
|
-
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2824
|
-
space?: Maybe<ConfluenceSpace>;
|
|
2825
|
-
status?: Maybe<ConfluenceContentStatus>;
|
|
2826
|
-
title?: Maybe<Scalars['String']>;
|
|
2827
|
-
type?: Maybe<ConfluenceContentType>;
|
|
2828
|
-
};
|
|
2829
|
-
export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
3098
|
+
export declare type ConfluenceBlogPost = {
|
|
2830
3099
|
__typename?: 'ConfluenceBlogPost';
|
|
2831
3100
|
blogPostId: Scalars['ID'];
|
|
2832
3101
|
id: Scalars['ID'];
|
|
2833
3102
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2834
3103
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2835
3104
|
space?: Maybe<ConfluenceSpace>;
|
|
2836
|
-
status?: Maybe<
|
|
3105
|
+
status?: Maybe<ConfluenceBlogPostStatus>;
|
|
2837
3106
|
title?: Maybe<Scalars['String']>;
|
|
2838
3107
|
type?: Maybe<ConfluenceContentType>;
|
|
2839
3108
|
};
|
|
@@ -2842,20 +3111,34 @@ export declare type ConfluenceBlogPostLinks = {
|
|
|
2842
3111
|
base?: Maybe<Scalars['String']>;
|
|
2843
3112
|
webUi?: Maybe<Scalars['String']>;
|
|
2844
3113
|
};
|
|
3114
|
+
export declare enum ConfluenceBlogPostStatus {
|
|
3115
|
+
Archived = "ARCHIVED",
|
|
3116
|
+
Current = "CURRENT",
|
|
3117
|
+
Deleted = "DELETED",
|
|
3118
|
+
Draft = "DRAFT",
|
|
3119
|
+
Historical = "HISTORICAL",
|
|
3120
|
+
Trashed = "TRASHED"
|
|
3121
|
+
}
|
|
2845
3122
|
export declare type ConfluenceComment = {
|
|
2846
3123
|
__typename?: 'ConfluenceComment';
|
|
2847
3124
|
author?: Maybe<ConfluenceUserInfo>;
|
|
2848
3125
|
commentId?: Maybe<Scalars['ID']>;
|
|
2849
|
-
container?: Maybe<
|
|
3126
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
2850
3127
|
id: Scalars['ID'];
|
|
2851
3128
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
2852
3129
|
name?: Maybe<Scalars['String']>;
|
|
3130
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
2853
3131
|
};
|
|
3132
|
+
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage;
|
|
2854
3133
|
export declare type ConfluenceCommentLinks = {
|
|
2855
3134
|
__typename?: 'ConfluenceCommentLinks';
|
|
2856
3135
|
base?: Maybe<Scalars['String']>;
|
|
2857
3136
|
webUi?: Maybe<Scalars['String']>;
|
|
2858
3137
|
};
|
|
3138
|
+
export declare enum ConfluenceCommentStatus {
|
|
3139
|
+
Current = "CURRENT",
|
|
3140
|
+
Draft = "DRAFT"
|
|
3141
|
+
}
|
|
2859
3142
|
export declare type ConfluenceContentBody = {
|
|
2860
3143
|
__typename?: 'ConfluenceContentBody';
|
|
2861
3144
|
adf?: Maybe<Scalars['String']>;
|
|
@@ -2887,14 +3170,6 @@ export declare enum ConfluenceContentRepresentation {
|
|
|
2887
3170
|
View = "VIEW",
|
|
2888
3171
|
Wiki = "WIKI"
|
|
2889
3172
|
}
|
|
2890
|
-
export declare enum ConfluenceContentStatus {
|
|
2891
|
-
Archived = "ARCHIVED",
|
|
2892
|
-
Current = "CURRENT",
|
|
2893
|
-
Deleted = "DELETED",
|
|
2894
|
-
Draft = "DRAFT",
|
|
2895
|
-
Historical = "HISTORICAL",
|
|
2896
|
-
Trashed = "TRASHED"
|
|
2897
|
-
}
|
|
2898
3173
|
export declare type ConfluenceContentTitleEmoji = {
|
|
2899
3174
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
2900
3175
|
id?: Maybe<Scalars['String']>;
|
|
@@ -2909,7 +3184,7 @@ export declare enum ConfluenceContentType {
|
|
|
2909
3184
|
}
|
|
2910
3185
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
2911
3186
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2912
|
-
|
|
3187
|
+
spaceId: Scalars['ID'];
|
|
2913
3188
|
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2914
3189
|
title?: Maybe<Scalars['String']>;
|
|
2915
3190
|
};
|
|
@@ -2921,7 +3196,7 @@ export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
|
2921
3196
|
};
|
|
2922
3197
|
export declare type ConfluenceCreatePageInput = {
|
|
2923
3198
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2924
|
-
|
|
3199
|
+
spaceId: Scalars['ID'];
|
|
2925
3200
|
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2926
3201
|
title?: Maybe<Scalars['String']>;
|
|
2927
3202
|
};
|
|
@@ -2953,21 +3228,19 @@ export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
|
2953
3228
|
errors?: Maybe<Array<MutationError>>;
|
|
2954
3229
|
success: Scalars['Boolean'];
|
|
2955
3230
|
};
|
|
2956
|
-
export declare type
|
|
3231
|
+
export declare type ConfluenceDeleteDraftBlogPostInput = {
|
|
2957
3232
|
id: Scalars['ID'];
|
|
2958
|
-
status: ConfluenceMutationContentStatus;
|
|
2959
3233
|
};
|
|
2960
|
-
export declare type
|
|
2961
|
-
__typename?: '
|
|
3234
|
+
export declare type ConfluenceDeleteDraftBlogPostPayload = Payload & {
|
|
3235
|
+
__typename?: 'ConfluenceDeleteDraftBlogPostPayload';
|
|
2962
3236
|
errors?: Maybe<Array<MutationError>>;
|
|
2963
3237
|
success: Scalars['Boolean'];
|
|
2964
3238
|
};
|
|
2965
|
-
export declare type
|
|
3239
|
+
export declare type ConfluenceDeleteDraftPageInput = {
|
|
2966
3240
|
id: Scalars['ID'];
|
|
2967
|
-
status: ConfluenceMutationContentStatus;
|
|
2968
3241
|
};
|
|
2969
|
-
export declare type
|
|
2970
|
-
__typename?: '
|
|
3242
|
+
export declare type ConfluenceDeleteDraftPagePayload = Payload & {
|
|
3243
|
+
__typename?: 'ConfluenceDeleteDraftPagePayload';
|
|
2971
3244
|
errors?: Maybe<Array<MutationError>>;
|
|
2972
3245
|
success: Scalars['Boolean'];
|
|
2973
3246
|
};
|
|
@@ -3010,12 +3283,14 @@ export declare type ConfluenceMutationApi = {
|
|
|
3010
3283
|
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3011
3284
|
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
3012
3285
|
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
3013
|
-
|
|
3014
|
-
|
|
3286
|
+
confluenceDeleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
3287
|
+
confluenceDeleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
3015
3288
|
confluencePublishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
3016
3289
|
confluencePublishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3017
3290
|
confluencePurgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3018
3291
|
confluencePurgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3292
|
+
confluenceTrashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3293
|
+
confluenceTrashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3019
3294
|
confluenceUpdateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
3020
3295
|
confluenceUpdateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
3021
3296
|
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
@@ -3026,59 +3301,54 @@ export declare type ConfluenceMutationApi = {
|
|
|
3026
3301
|
confluenceDeleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3027
3302
|
};
|
|
3028
3303
|
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
3029
|
-
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
3030
3304
|
cloudId: Scalars['ID'];
|
|
3305
|
+
input: ConfluenceCreateBlogPostInput;
|
|
3031
3306
|
};
|
|
3032
3307
|
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
3033
3308
|
cloudId: Scalars['ID'];
|
|
3034
|
-
|
|
3309
|
+
input: ConfluenceCreatePageInput;
|
|
3035
3310
|
};
|
|
3036
3311
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
3037
3312
|
cloudId: Scalars['ID'];
|
|
3038
3313
|
input: ConfluenceCreateSpaceInput;
|
|
3039
3314
|
};
|
|
3040
|
-
export declare type
|
|
3041
|
-
|
|
3042
|
-
deletBlogPostInput: ConfluenceDeleteBlogPostInput;
|
|
3315
|
+
export declare type ConfluenceMutationApiConfluenceDeleteDraftBlogPostArgs = {
|
|
3316
|
+
input: ConfluenceDeleteDraftBlogPostInput;
|
|
3043
3317
|
};
|
|
3044
|
-
export declare type
|
|
3045
|
-
|
|
3046
|
-
deletPageInput: ConfluenceDeletePageInput;
|
|
3318
|
+
export declare type ConfluenceMutationApiConfluenceDeleteDraftPageArgs = {
|
|
3319
|
+
input: ConfluenceDeleteDraftPageInput;
|
|
3047
3320
|
};
|
|
3048
3321
|
export declare type ConfluenceMutationApiConfluencePublishBlogPostArgs = {
|
|
3049
|
-
|
|
3050
|
-
publishBlogPostInput: ConfluencePublishBlogPostInput;
|
|
3322
|
+
input: ConfluencePublishBlogPostInput;
|
|
3051
3323
|
};
|
|
3052
3324
|
export declare type ConfluenceMutationApiConfluencePublishPageArgs = {
|
|
3053
|
-
|
|
3054
|
-
publishPageInput: ConfluencePublishPageInput;
|
|
3325
|
+
input: ConfluencePublishPageInput;
|
|
3055
3326
|
};
|
|
3056
3327
|
export declare type ConfluenceMutationApiConfluencePurgeBlogPostArgs = {
|
|
3057
|
-
|
|
3058
|
-
purgeBlogPostInput: ConfluencePurgeBlogPostInput;
|
|
3328
|
+
input: ConfluencePurgeBlogPostInput;
|
|
3059
3329
|
};
|
|
3060
3330
|
export declare type ConfluenceMutationApiConfluencePurgePageArgs = {
|
|
3061
|
-
|
|
3062
|
-
|
|
3331
|
+
input: ConfluencePurgePageInput;
|
|
3332
|
+
};
|
|
3333
|
+
export declare type ConfluenceMutationApiConfluenceTrashBlogPostArgs = {
|
|
3334
|
+
input: ConfluenceTrashBlogPostInput;
|
|
3335
|
+
};
|
|
3336
|
+
export declare type ConfluenceMutationApiConfluenceTrashPageArgs = {
|
|
3337
|
+
input: ConfluenceTrashPageInput;
|
|
3063
3338
|
};
|
|
3064
3339
|
export declare type ConfluenceMutationApiConfluenceUpdateCurrentBlogPostArgs = {
|
|
3065
|
-
|
|
3066
|
-
updateBlogPostInput: ConfluenceUpdateCurrentBlogPostInput;
|
|
3340
|
+
input: ConfluenceUpdateCurrentBlogPostInput;
|
|
3067
3341
|
};
|
|
3068
3342
|
export declare type ConfluenceMutationApiConfluenceUpdateCurrentPageArgs = {
|
|
3069
|
-
|
|
3070
|
-
updatePageInput: ConfluenceUpdateCurrentPageInput;
|
|
3343
|
+
input: ConfluenceUpdateCurrentPageInput;
|
|
3071
3344
|
};
|
|
3072
3345
|
export declare type ConfluenceMutationApiConfluenceUpdateDraftBlogPostArgs = {
|
|
3073
|
-
|
|
3074
|
-
updateBlogPostInput: ConfluenceUpdateDraftBlogPostInput;
|
|
3346
|
+
input: ConfluenceUpdateDraftBlogPostInput;
|
|
3075
3347
|
};
|
|
3076
3348
|
export declare type ConfluenceMutationApiConfluenceUpdateDraftPageArgs = {
|
|
3077
|
-
|
|
3078
|
-
updatePageInput: ConfluenceUpdateDraftPageInput;
|
|
3349
|
+
input: ConfluenceUpdateDraftPageInput;
|
|
3079
3350
|
};
|
|
3080
3351
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
3081
|
-
cloudId: Scalars['ID'];
|
|
3082
3352
|
input: ConfluenceUpdateSpaceInput;
|
|
3083
3353
|
};
|
|
3084
3354
|
export declare type ConfluenceMutationApiConfluenceCreateUserPropertyArgs = {
|
|
@@ -3126,14 +3396,14 @@ export declare enum ConfluenceOperationTarget {
|
|
|
3126
3396
|
Space = "SPACE",
|
|
3127
3397
|
UserProfile = "USER_PROFILE"
|
|
3128
3398
|
}
|
|
3129
|
-
export declare type ConfluencePage =
|
|
3399
|
+
export declare type ConfluencePage = {
|
|
3130
3400
|
__typename?: 'ConfluencePage';
|
|
3131
3401
|
id: Scalars['ID'];
|
|
3132
3402
|
links?: Maybe<ConfluencePageLinks>;
|
|
3133
3403
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
3134
3404
|
pageId: Scalars['ID'];
|
|
3135
3405
|
space?: Maybe<ConfluenceSpace>;
|
|
3136
|
-
status?: Maybe<
|
|
3406
|
+
status?: Maybe<ConfluencePageStatus>;
|
|
3137
3407
|
title?: Maybe<Scalars['String']>;
|
|
3138
3408
|
type?: Maybe<ConfluenceContentType>;
|
|
3139
3409
|
};
|
|
@@ -3142,8 +3412,16 @@ export declare type ConfluencePageLinks = {
|
|
|
3142
3412
|
base?: Maybe<Scalars['String']>;
|
|
3143
3413
|
webUi?: Maybe<Scalars['String']>;
|
|
3144
3414
|
};
|
|
3415
|
+
export declare enum ConfluencePageStatus {
|
|
3416
|
+
Archived = "ARCHIVED",
|
|
3417
|
+
Current = "CURRENT",
|
|
3418
|
+
Deleted = "DELETED",
|
|
3419
|
+
Draft = "DRAFT",
|
|
3420
|
+
Historical = "HISTORICAL",
|
|
3421
|
+
Trashed = "TRASHED"
|
|
3422
|
+
}
|
|
3145
3423
|
export declare type ConfluencePublishBlogPostInput = {
|
|
3146
|
-
id: Scalars['
|
|
3424
|
+
id: Scalars['ID'];
|
|
3147
3425
|
publishTitle?: Maybe<Scalars['String']>;
|
|
3148
3426
|
};
|
|
3149
3427
|
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
@@ -3153,7 +3431,7 @@ export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
|
3153
3431
|
success: Scalars['Boolean'];
|
|
3154
3432
|
};
|
|
3155
3433
|
export declare type ConfluencePublishPageInput = {
|
|
3156
|
-
id: Scalars['
|
|
3434
|
+
id: Scalars['ID'];
|
|
3157
3435
|
publishTitle?: Maybe<Scalars['String']>;
|
|
3158
3436
|
};
|
|
3159
3437
|
export declare type ConfluencePublishPagePayload = Payload & {
|
|
@@ -3190,7 +3468,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
3190
3468
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
3191
3469
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3192
3470
|
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3193
|
-
confluenceUserProperties
|
|
3471
|
+
confluenceUserProperties?: Maybe<Array<Maybe<ConfluenceUserProperty>>>;
|
|
3194
3472
|
};
|
|
3195
3473
|
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3196
3474
|
id: Scalars['ID'];
|
|
@@ -3227,9 +3505,10 @@ export declare type ConfluenceQueryApiConfluenceUserPropertiesArgs = {
|
|
|
3227
3505
|
};
|
|
3228
3506
|
export declare type ConfluenceSpace = {
|
|
3229
3507
|
__typename?: 'ConfluenceSpace';
|
|
3508
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3509
|
+
createdDate?: Maybe<Scalars['String']>;
|
|
3230
3510
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
3231
|
-
|
|
3232
|
-
homepage?: Maybe<ConfluenceAbstractPage>;
|
|
3511
|
+
homepage?: Maybe<ConfluencePage>;
|
|
3233
3512
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
3234
3513
|
id: Scalars['ID'];
|
|
3235
3514
|
key?: Maybe<Scalars['String']>;
|
|
@@ -3246,11 +3525,6 @@ export declare type ConfluenceSpaceDescription = {
|
|
|
3246
3525
|
plain?: Maybe<Scalars['String']>;
|
|
3247
3526
|
view?: Maybe<Scalars['String']>;
|
|
3248
3527
|
};
|
|
3249
|
-
export declare type ConfluenceSpaceHistory = {
|
|
3250
|
-
__typename?: 'ConfluenceSpaceHistory';
|
|
3251
|
-
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3252
|
-
createdDate?: Maybe<Scalars['String']>;
|
|
3253
|
-
};
|
|
3254
3528
|
export declare type ConfluenceSpaceIcon = {
|
|
3255
3529
|
__typename?: 'ConfluenceSpaceIcon';
|
|
3256
3530
|
height?: Maybe<Scalars['Int']>;
|
|
@@ -3280,6 +3554,22 @@ export declare enum ConfluenceSpaceType {
|
|
|
3280
3554
|
Global = "GLOBAL",
|
|
3281
3555
|
Personal = "PERSONAL"
|
|
3282
3556
|
}
|
|
3557
|
+
export declare type ConfluenceTrashBlogPostInput = {
|
|
3558
|
+
id: Scalars['ID'];
|
|
3559
|
+
};
|
|
3560
|
+
export declare type ConfluenceTrashBlogPostPayload = Payload & {
|
|
3561
|
+
__typename?: 'ConfluenceTrashBlogPostPayload';
|
|
3562
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3563
|
+
success: Scalars['Boolean'];
|
|
3564
|
+
};
|
|
3565
|
+
export declare type ConfluenceTrashPageInput = {
|
|
3566
|
+
id: Scalars['ID'];
|
|
3567
|
+
};
|
|
3568
|
+
export declare type ConfluenceTrashPagePayload = Payload & {
|
|
3569
|
+
__typename?: 'ConfluenceTrashPagePayload';
|
|
3570
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3571
|
+
success: Scalars['Boolean'];
|
|
3572
|
+
};
|
|
3283
3573
|
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3284
3574
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3285
3575
|
id: Scalars['ID'];
|
|
@@ -3373,7 +3663,6 @@ export declare type ContainerEventObject = {
|
|
|
3373
3663
|
attributes: Scalars['JSON'];
|
|
3374
3664
|
};
|
|
3375
3665
|
export declare type ContentPlatformAnyContext = ContentPlatformContextProduct | ContentPlatformContextApp | ContentPlatformContextTheme;
|
|
3376
|
-
export declare type ContentPlatformAnyContextEntry = ContentPlatformContextProductEntry | ContentPlatformContextAppEntry | ContentPlatformContextThemeEntry;
|
|
3377
3666
|
export declare type ContentPlatformChunkBenefits = {
|
|
3378
3667
|
__typename?: 'ContentPlatformChunkBenefits';
|
|
3379
3668
|
title: Scalars['String'];
|
|
@@ -3414,16 +3703,6 @@ export declare type ContentPlatformContextApp = {
|
|
|
3414
3703
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
3415
3704
|
url?: Maybe<Scalars['String']>;
|
|
3416
3705
|
};
|
|
3417
|
-
export declare type ContentPlatformContextAppEntry = {
|
|
3418
|
-
__typename?: 'ContentPlatformContextAppEntry';
|
|
3419
|
-
contextId: Scalars['String'];
|
|
3420
|
-
title: Scalars['String'];
|
|
3421
|
-
preventProdPublishing?: Maybe<Scalars['Boolean']>;
|
|
3422
|
-
appName: Scalars['String'];
|
|
3423
|
-
parentProductContext: Array<ContentPlatformContextProductEntry>;
|
|
3424
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3425
|
-
url: Scalars['String'];
|
|
3426
|
-
};
|
|
3427
3706
|
export declare type ContentPlatformContextProduct = {
|
|
3428
3707
|
__typename?: 'ContentPlatformContextProduct';
|
|
3429
3708
|
contextId: Scalars['String'];
|
|
@@ -3463,15 +3742,6 @@ export declare type ContentPlatformContextTheme = {
|
|
|
3463
3742
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
3464
3743
|
url?: Maybe<Scalars['String']>;
|
|
3465
3744
|
};
|
|
3466
|
-
export declare type ContentPlatformContextThemeEntry = {
|
|
3467
|
-
__typename?: 'ContentPlatformContextThemeEntry';
|
|
3468
|
-
contextId: Scalars['String'];
|
|
3469
|
-
title: Scalars['String'];
|
|
3470
|
-
preventProdPublishing: Scalars['Boolean'];
|
|
3471
|
-
hubName: Scalars['String'];
|
|
3472
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3473
|
-
url: Scalars['String'];
|
|
3474
|
-
};
|
|
3475
3745
|
export declare type ContentPlatformImageAsset = {
|
|
3476
3746
|
__typename?: 'ContentPlatformImageAsset';
|
|
3477
3747
|
title: Scalars['String'];
|
|
@@ -3497,13 +3767,6 @@ export declare type ContentPlatformImageComponent = {
|
|
|
3497
3767
|
image: ContentPlatformImageAsset;
|
|
3498
3768
|
contextReference: Array<ContentPlatformAnyContext>;
|
|
3499
3769
|
};
|
|
3500
|
-
export declare type ContentPlatformImageComponentEntry = {
|
|
3501
|
-
__typename?: 'ContentPlatformImageComponentEntry';
|
|
3502
|
-
name: Scalars['String'];
|
|
3503
|
-
altTag: Scalars['String'];
|
|
3504
|
-
image: ContentPlatformImageAssetEntry;
|
|
3505
|
-
contextReference: Array<ContentPlatformAnyContextEntry>;
|
|
3506
|
-
};
|
|
3507
3770
|
export declare type ContentPlatformIntroToPractice = {
|
|
3508
3771
|
__typename?: 'ContentPlatformIntroToPractice';
|
|
3509
3772
|
title: Scalars['String'];
|
|
@@ -3562,35 +3825,6 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3562
3825
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3563
3826
|
getStarted?: Maybe<Scalars['JSON']>;
|
|
3564
3827
|
};
|
|
3565
|
-
export declare type ContentPlatformReleaseNoteEntry = {
|
|
3566
|
-
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
3567
|
-
releaseNoteId: Scalars['String'];
|
|
3568
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
3569
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
3570
|
-
title?: Maybe<Scalars['String']>;
|
|
3571
|
-
changeTargetSchedule?: Maybe<Scalars['String']>;
|
|
3572
|
-
announcementPlan?: Maybe<ContentPlatformTaxonomyAnnouncementPlanEntry>;
|
|
3573
|
-
changeType?: Maybe<ContentPlatformTypeOfChangeEntry>;
|
|
3574
|
-
changeStatus?: Maybe<ContentPlatformStatusOfChangeEntry>;
|
|
3575
|
-
relatedContexts?: Maybe<Array<ContentPlatformAnyContextEntry>>;
|
|
3576
|
-
affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
|
|
3577
|
-
usersNeedingInformed?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
|
|
3578
|
-
description?: Maybe<Scalars['JSON']>;
|
|
3579
|
-
featuredImage?: Maybe<ContentPlatformImageComponentEntry>;
|
|
3580
|
-
keyChanges?: Maybe<Scalars['JSON']>;
|
|
3581
|
-
reasonForChange?: Maybe<Scalars['JSON']>;
|
|
3582
|
-
prepareForChange?: Maybe<Scalars['JSON']>;
|
|
3583
|
-
supportingVisuals?: Maybe<Array<ContentPlatformImageComponentEntry>>;
|
|
3584
|
-
relatedContentLinks?: Maybe<Array<Scalars['String']>>;
|
|
3585
|
-
featureRolloutDate?: Maybe<Scalars['String']>;
|
|
3586
|
-
changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategoryEntry>;
|
|
3587
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
3588
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
3589
|
-
updatedAt: Scalars['String'];
|
|
3590
|
-
url: Scalars['String'];
|
|
3591
|
-
benefitsList: Scalars['JSON'];
|
|
3592
|
-
getStarted: Scalars['JSON'];
|
|
3593
|
-
};
|
|
3594
3828
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
3595
3829
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
3596
3830
|
contextId?: Maybe<Scalars['String']>;
|
|
@@ -3619,11 +3853,6 @@ export declare type ContentPlatformStatusOfChange = {
|
|
|
3619
3853
|
label: Scalars['String'];
|
|
3620
3854
|
description: Scalars['String'];
|
|
3621
3855
|
};
|
|
3622
|
-
export declare type ContentPlatformStatusOfChangeEntry = {
|
|
3623
|
-
__typename?: 'ContentPlatformStatusOfChangeEntry';
|
|
3624
|
-
label: Scalars['String'];
|
|
3625
|
-
description: Scalars['String'];
|
|
3626
|
-
};
|
|
3627
3856
|
export declare type ContentPlatformTaxonomyAnnouncementPlan = {
|
|
3628
3857
|
__typename?: 'ContentPlatformTaxonomyAnnouncementPlan';
|
|
3629
3858
|
title: Scalars['String'];
|
|
@@ -3639,31 +3868,16 @@ export declare type ContentPlatformTaxonomyChangeCategory = {
|
|
|
3639
3868
|
title: Scalars['String'];
|
|
3640
3869
|
description: Scalars['String'];
|
|
3641
3870
|
};
|
|
3642
|
-
export declare type ContentPlatformTaxonomyChangeCategoryEntry = {
|
|
3643
|
-
__typename?: 'ContentPlatformTaxonomyChangeCategoryEntry';
|
|
3644
|
-
title: Scalars['String'];
|
|
3645
|
-
description: Scalars['String'];
|
|
3646
|
-
};
|
|
3647
3871
|
export declare type ContentPlatformTaxonomyUserRole = {
|
|
3648
3872
|
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
3649
3873
|
title: Scalars['String'];
|
|
3650
3874
|
description: Scalars['String'];
|
|
3651
3875
|
};
|
|
3652
|
-
export declare type ContentPlatformTaxonomyUserRoleEntry = {
|
|
3653
|
-
__typename?: 'ContentPlatformTaxonomyUserRoleEntry';
|
|
3654
|
-
title: Scalars['String'];
|
|
3655
|
-
description: Scalars['String'];
|
|
3656
|
-
};
|
|
3657
3876
|
export declare type ContentPlatformTypeOfChange = {
|
|
3658
3877
|
__typename?: 'ContentPlatformTypeOfChange';
|
|
3659
3878
|
label: Scalars['String'];
|
|
3660
3879
|
icon: ContentPlatformImageAsset;
|
|
3661
3880
|
};
|
|
3662
|
-
export declare type ContentPlatformTypeOfChangeEntry = {
|
|
3663
|
-
__typename?: 'ContentPlatformTypeOfChangeEntry';
|
|
3664
|
-
label?: Maybe<Scalars['String']>;
|
|
3665
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3666
|
-
};
|
|
3667
3881
|
export declare type ContentPlatformWhatPractice = {
|
|
3668
3882
|
__typename?: 'ContentPlatformWhatPractice';
|
|
3669
3883
|
title: Scalars['String'];
|
|
@@ -3762,6 +3976,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
3762
3976
|
type: CompassComponentType;
|
|
3763
3977
|
ownerId?: Maybe<Scalars['ID']>;
|
|
3764
3978
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
3979
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
3765
3980
|
};
|
|
3766
3981
|
export declare type CreateCompassComponentLinkInput = {
|
|
3767
3982
|
componentId: Scalars['ID'];
|
|
@@ -4410,6 +4625,7 @@ export declare type DeleteEventSourceInput = {
|
|
|
4410
4625
|
cloudId: Scalars['ID'];
|
|
4411
4626
|
externalEventSourceId: Scalars['ID'];
|
|
4412
4627
|
eventType: CompassEventType;
|
|
4628
|
+
deleteIfAttachedToComponents?: Maybe<Scalars['Boolean']>;
|
|
4413
4629
|
};
|
|
4414
4630
|
export declare type DeleteEventSourcePayload = Payload & {
|
|
4415
4631
|
__typename?: 'DeleteEventSourcePayload';
|
|
@@ -4552,6 +4768,7 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
4552
4768
|
export declare type DevOps = {
|
|
4553
4769
|
__typename?: 'DevOps';
|
|
4554
4770
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4771
|
+
ariGraph?: Maybe<AriGraph>;
|
|
4555
4772
|
};
|
|
4556
4773
|
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4557
4774
|
ids: Array<Scalars['ID']>;
|
|
@@ -4755,6 +4972,11 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
4755
4972
|
type: DevOpsMetricsRollupOption;
|
|
4756
4973
|
percentile?: Maybe<Scalars['Int']>;
|
|
4757
4974
|
};
|
|
4975
|
+
export declare type DevOpsMutation = {
|
|
4976
|
+
__typename?: 'DevOpsMutation';
|
|
4977
|
+
_empty?: Maybe<Scalars['String']>;
|
|
4978
|
+
ariGraph?: Maybe<AriGraphMutation>;
|
|
4979
|
+
};
|
|
4758
4980
|
export declare type DevOpsProvider = {
|
|
4759
4981
|
__typename?: 'DevOpsProvider';
|
|
4760
4982
|
name?: Maybe<Scalars['String']>;
|
|
@@ -5020,7 +5242,10 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
5020
5242
|
__typename?: 'DevOpsSummarisedDeployments';
|
|
5021
5243
|
entityId: Scalars['ID'];
|
|
5022
5244
|
count?: Maybe<Scalars['Int']>;
|
|
5245
|
+
mostRelevantCount?: Maybe<Scalars['Int']>;
|
|
5023
5246
|
deploymentState?: Maybe<DeploymentState>;
|
|
5247
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5248
|
+
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5024
5249
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5025
5250
|
};
|
|
5026
5251
|
export declare type DevOpsThirdPartyRepository = {
|
|
@@ -5030,7 +5255,8 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
5030
5255
|
name?: Maybe<Scalars['String']>;
|
|
5031
5256
|
avatar?: Maybe<DevOpsAvatar>;
|
|
5032
5257
|
};
|
|
5033
|
-
export declare type DevOpsTool = {
|
|
5258
|
+
export declare type DevOpsTool = Node & {
|
|
5259
|
+
__typename?: 'DevOpsTool';
|
|
5034
5260
|
id: Scalars['ID'];
|
|
5035
5261
|
name: Scalars['String'];
|
|
5036
5262
|
productKey: Scalars['String'];
|
|
@@ -5038,7 +5264,7 @@ export declare type DevOpsTool = {
|
|
|
5038
5264
|
group: DevOpsToolGroup;
|
|
5039
5265
|
supportsContainers: Scalars['Boolean'];
|
|
5040
5266
|
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5041
|
-
|
|
5267
|
+
integration?: Maybe<DevOpsToolIntegration>;
|
|
5042
5268
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5043
5269
|
};
|
|
5044
5270
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -5046,23 +5272,6 @@ export declare type DevOpsToolNamespacesArgs = {
|
|
|
5046
5272
|
first?: Maybe<Scalars['Int']>;
|
|
5047
5273
|
after?: Maybe<Scalars['String']>;
|
|
5048
5274
|
};
|
|
5049
|
-
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
5050
|
-
__typename?: 'DevOpsToolAvailable';
|
|
5051
|
-
id: Scalars['ID'];
|
|
5052
|
-
name: Scalars['String'];
|
|
5053
|
-
productKey: Scalars['String'];
|
|
5054
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5055
|
-
group: DevOpsToolGroup;
|
|
5056
|
-
supportsContainers: Scalars['Boolean'];
|
|
5057
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5058
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5059
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5060
|
-
};
|
|
5061
|
-
export declare type DevOpsToolAvailableNamespacesArgs = {
|
|
5062
|
-
query?: Maybe<Scalars['String']>;
|
|
5063
|
-
first?: Maybe<Scalars['Int']>;
|
|
5064
|
-
after?: Maybe<Scalars['String']>;
|
|
5065
|
-
};
|
|
5066
5275
|
export declare type DevOpsToolAvatar = {
|
|
5067
5276
|
__typename?: 'DevOpsToolAvatar';
|
|
5068
5277
|
url: Scalars['URL'];
|
|
@@ -5075,11 +5284,6 @@ export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpeci
|
|
|
5075
5284
|
name: Scalars['String'];
|
|
5076
5285
|
};
|
|
5077
5286
|
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
5078
|
-
export declare enum DevOpsToolCategory {
|
|
5079
|
-
Development = "DEVELOPMENT",
|
|
5080
|
-
Documentation = "DOCUMENTATION",
|
|
5081
|
-
Operations = "OPERATIONS"
|
|
5082
|
-
}
|
|
5083
5287
|
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5084
5288
|
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5085
5289
|
requestId: Scalars['String'];
|
|
@@ -5154,11 +5358,6 @@ export declare type DevOpsToolContainerNameConflict = {
|
|
|
5154
5358
|
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5155
5359
|
name?: Maybe<Scalars['String']>;
|
|
5156
5360
|
};
|
|
5157
|
-
export declare enum DevOpsToolContainerType {
|
|
5158
|
-
Repository = "REPOSITORY",
|
|
5159
|
-
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
5160
|
-
OnCallSchedule = "ON_CALL_SCHEDULE"
|
|
5161
|
-
}
|
|
5162
5361
|
export declare type DevOpsToolEdge = {
|
|
5163
5362
|
__typename?: 'DevOpsToolEdge';
|
|
5164
5363
|
cursor: Scalars['String'];
|
|
@@ -5181,10 +5380,20 @@ export declare type DevOpsToolGroup = {
|
|
|
5181
5380
|
groupId: Scalars['String'];
|
|
5182
5381
|
groupName: Scalars['String'];
|
|
5183
5382
|
};
|
|
5184
|
-
export declare type
|
|
5185
|
-
|
|
5186
|
-
|
|
5187
|
-
|
|
5383
|
+
export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
|
|
5384
|
+
export declare type DevOpsToolIntegrationApp = {
|
|
5385
|
+
__typename?: 'DevOpsToolIntegrationApp';
|
|
5386
|
+
appKey: Scalars['String'];
|
|
5387
|
+
appName: Scalars['String'];
|
|
5388
|
+
installed: Scalars['Boolean'];
|
|
5389
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
5390
|
+
};
|
|
5391
|
+
export declare type DevOpsToolIntegrationProduct = {
|
|
5392
|
+
__typename?: 'DevOpsToolIntegrationProduct';
|
|
5393
|
+
productKey: Scalars['String'];
|
|
5394
|
+
productName: Scalars['String'];
|
|
5395
|
+
available: Scalars['Boolean'];
|
|
5396
|
+
iconUrl?: Maybe<Scalars['String']>;
|
|
5188
5397
|
};
|
|
5189
5398
|
export declare type DevOpsToolNamespace = Node & {
|
|
5190
5399
|
__typename?: 'DevOpsToolNamespace';
|
|
@@ -5199,6 +5408,7 @@ export declare type DevOpsToolNamespaceContainersArgs = {
|
|
|
5199
5408
|
query?: Maybe<Scalars['String']>;
|
|
5200
5409
|
first?: Maybe<Scalars['Int']>;
|
|
5201
5410
|
after?: Maybe<Scalars['String']>;
|
|
5411
|
+
projectAri?: Maybe<Scalars['String']>;
|
|
5202
5412
|
};
|
|
5203
5413
|
export declare type DevOpsToolNamespaceConnection = {
|
|
5204
5414
|
__typename?: 'DevOpsToolNamespaceConnection';
|
|
@@ -5227,29 +5437,6 @@ export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecif
|
|
|
5227
5437
|
requestId: Scalars['String'];
|
|
5228
5438
|
name: Scalars['String'];
|
|
5229
5439
|
};
|
|
5230
|
-
export declare type DevOpsToolSupportedContainerType = {
|
|
5231
|
-
__typename?: 'DevOpsToolSupportedContainerType';
|
|
5232
|
-
category: DevOpsToolCategory;
|
|
5233
|
-
type: DevOpsToolContainerType;
|
|
5234
|
-
};
|
|
5235
|
-
export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
5236
|
-
__typename?: 'DevOpsToolUnavailable';
|
|
5237
|
-
id: Scalars['ID'];
|
|
5238
|
-
name: Scalars['String'];
|
|
5239
|
-
productKey: Scalars['String'];
|
|
5240
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5241
|
-
group: DevOpsToolGroup;
|
|
5242
|
-
supportsContainers: Scalars['Boolean'];
|
|
5243
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5244
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5245
|
-
install: DevOpsToolInstallationInfo;
|
|
5246
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5247
|
-
};
|
|
5248
|
-
export declare type DevOpsToolUnavailableNamespacesArgs = {
|
|
5249
|
-
query?: Maybe<Scalars['String']>;
|
|
5250
|
-
first?: Maybe<Scalars['Int']>;
|
|
5251
|
-
after?: Maybe<Scalars['String']>;
|
|
5252
|
-
};
|
|
5253
5440
|
export declare type DevOpsToolUnknownTool = {
|
|
5254
5441
|
__typename?: 'DevOpsToolUnknownTool';
|
|
5255
5442
|
toolId?: Maybe<Scalars['String']>;
|
|
@@ -5278,6 +5465,10 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5278
5465
|
cloudId: Scalars['ID'];
|
|
5279
5466
|
first?: Maybe<Scalars['Int']>;
|
|
5280
5467
|
after?: Maybe<Scalars['String']>;
|
|
5468
|
+
recommended?: Maybe<Scalars['Boolean']>;
|
|
5469
|
+
groupId?: Maybe<Scalars['String']>;
|
|
5470
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
5471
|
+
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5281
5472
|
};
|
|
5282
5473
|
export declare type DevOpsToolsToolArgs = {
|
|
5283
5474
|
id: Scalars['ID'];
|
|
@@ -5399,6 +5590,7 @@ export declare type EstimationBoardFeatureView = Node & {
|
|
|
5399
5590
|
status?: Maybe<Scalars['String']>;
|
|
5400
5591
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
5401
5592
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
5593
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
5402
5594
|
imageUri?: Maybe<Scalars['String']>;
|
|
5403
5595
|
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
5404
5596
|
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
@@ -5445,6 +5637,7 @@ export declare type Extension = {
|
|
|
5445
5637
|
appOwner?: Maybe<User>;
|
|
5446
5638
|
appVersion?: Maybe<Scalars['String']>;
|
|
5447
5639
|
properties: Scalars['JSON'];
|
|
5640
|
+
migrationKey?: Maybe<Scalars['String']>;
|
|
5448
5641
|
license?: Maybe<AppInstallationLicense>;
|
|
5449
5642
|
egress?: Maybe<Array<AppNetworkEgressPermissionExtension>>;
|
|
5450
5643
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
|
|
@@ -5670,6 +5863,154 @@ export declare enum GrantCheckProduct {
|
|
|
5670
5863
|
Compass = "COMPASS",
|
|
5671
5864
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5672
5865
|
}
|
|
5866
|
+
export declare type HelpCenter = Node & {
|
|
5867
|
+
__typename?: 'HelpCenter';
|
|
5868
|
+
id: Scalars['ID'];
|
|
5869
|
+
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5870
|
+
};
|
|
5871
|
+
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
5872
|
+
helpCenterCreateCollectionInputItem: Array<HelpCenterCreateCollectionInput>;
|
|
5873
|
+
};
|
|
5874
|
+
export declare type HelpCenterBulkDeleteCollectionInput = {
|
|
5875
|
+
helpCenterCollectionDeleteInput: Array<HelpCenterCollectionDeleteInput>;
|
|
5876
|
+
};
|
|
5877
|
+
export declare type HelpCenterBulkUpdateCollectionInput = {
|
|
5878
|
+
helpCenterUpdateCollectionInputItem: Array<HelpCenterUpdateCollectionInput>;
|
|
5879
|
+
};
|
|
5880
|
+
export declare type HelpCenterCollection = {
|
|
5881
|
+
__typename?: 'HelpCenterCollection';
|
|
5882
|
+
collectionId: Scalars['ID'];
|
|
5883
|
+
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
5884
|
+
name: Scalars['String'];
|
|
5885
|
+
description?: Maybe<Scalars['String']>;
|
|
5886
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5887
|
+
};
|
|
5888
|
+
export declare type HelpCenterCollectionItemsArgs = {
|
|
5889
|
+
first?: Maybe<Scalars['Int']>;
|
|
5890
|
+
after?: Maybe<Scalars['String']>;
|
|
5891
|
+
last?: Maybe<Scalars['Int']>;
|
|
5892
|
+
before?: Maybe<Scalars['String']>;
|
|
5893
|
+
};
|
|
5894
|
+
export declare type HelpCenterCollectionDeleteInput = {
|
|
5895
|
+
helpCenterId: Scalars['ID'];
|
|
5896
|
+
collectionId: Scalars['ID'];
|
|
5897
|
+
};
|
|
5898
|
+
export declare type HelpCenterCollectionItem = {
|
|
5899
|
+
__typename?: 'HelpCenterCollectionItem';
|
|
5900
|
+
ari: Scalars['ID'];
|
|
5901
|
+
};
|
|
5902
|
+
export declare type HelpCenterCollectionItemConnection = {
|
|
5903
|
+
__typename?: 'HelpCenterCollectionItemConnection';
|
|
5904
|
+
edges?: Maybe<Array<Maybe<HelpCenterCollectionItemEdge>>>;
|
|
5905
|
+
nodes?: Maybe<Array<Maybe<HelpCenterCollectionItem>>>;
|
|
5906
|
+
pageInfo: PageInfo;
|
|
5907
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5908
|
+
};
|
|
5909
|
+
export declare type HelpCenterCollectionItemEdge = {
|
|
5910
|
+
__typename?: 'HelpCenterCollectionItemEdge';
|
|
5911
|
+
cursor: Scalars['String'];
|
|
5912
|
+
node?: Maybe<HelpCenterCollectionItem>;
|
|
5913
|
+
};
|
|
5914
|
+
export declare type HelpCenterCollectionItemInput = {
|
|
5915
|
+
ari: Scalars['ID'];
|
|
5916
|
+
};
|
|
5917
|
+
export declare type HelpCenterCollectionResult = HelpCenterCollection | HelpCenterQueryErrors;
|
|
5918
|
+
export declare type HelpCenterCreateCollectionInput = {
|
|
5919
|
+
helpCenterId: Scalars['ID'];
|
|
5920
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5921
|
+
name: Scalars['String'];
|
|
5922
|
+
description?: Maybe<Scalars['String']>;
|
|
5923
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5924
|
+
};
|
|
5925
|
+
export declare type HelpCenterCreateCollectionPayload = Payload & {
|
|
5926
|
+
__typename?: 'HelpCenterCreateCollectionPayload';
|
|
5927
|
+
success: Scalars['Boolean'];
|
|
5928
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5929
|
+
successfullyCreatedCollectionIds: Array<Maybe<HelpCenterSuccessfullyCreatedCollectionIds>>;
|
|
5930
|
+
};
|
|
5931
|
+
export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
5932
|
+
__typename?: 'HelpCenterDeleteUpdateCollectionPayload';
|
|
5933
|
+
success: Scalars['Boolean'];
|
|
5934
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5935
|
+
};
|
|
5936
|
+
export declare type HelpCenterMutationApi = {
|
|
5937
|
+
__typename?: 'HelpCenterMutationApi';
|
|
5938
|
+
createCollection: HelpCenterCreateCollectionPayload;
|
|
5939
|
+
updateCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5940
|
+
updateCollectionsOrder: HelpCenterUpdateCollectionsOrderPayload;
|
|
5941
|
+
deleteCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5942
|
+
};
|
|
5943
|
+
export declare type HelpCenterMutationApiCreateCollectionArgs = {
|
|
5944
|
+
input: HelpCenterBulkCreateCollectionsInput;
|
|
5945
|
+
};
|
|
5946
|
+
export declare type HelpCenterMutationApiUpdateCollectionArgs = {
|
|
5947
|
+
input: HelpCenterBulkUpdateCollectionInput;
|
|
5948
|
+
};
|
|
5949
|
+
export declare type HelpCenterMutationApiUpdateCollectionsOrderArgs = {
|
|
5950
|
+
input: HelpCenterUpdateCollectionsOrderInput;
|
|
5951
|
+
};
|
|
5952
|
+
export declare type HelpCenterMutationApiDeleteCollectionArgs = {
|
|
5953
|
+
input: HelpCenterBulkDeleteCollectionInput;
|
|
5954
|
+
};
|
|
5955
|
+
export declare type HelpCenterQueryApi = {
|
|
5956
|
+
__typename?: 'HelpCenterQueryApi';
|
|
5957
|
+
helpCenter: HelpCenterQueryResult;
|
|
5958
|
+
helpCenterCollection: HelpCenterCollectionResult;
|
|
5959
|
+
};
|
|
5960
|
+
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
5961
|
+
helpCenterId: Scalars['ID'];
|
|
5962
|
+
};
|
|
5963
|
+
export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
5964
|
+
helpCenterId: Scalars['ID'];
|
|
5965
|
+
collectionId: Scalars['ID'];
|
|
5966
|
+
};
|
|
5967
|
+
export declare type HelpCenterQueryErrors = {
|
|
5968
|
+
__typename?: 'HelpCenterQueryErrors';
|
|
5969
|
+
errors?: Maybe<Array<QueryError>>;
|
|
5970
|
+
};
|
|
5971
|
+
export declare type HelpCenterQueryResult = HelpCenter | HelpCenterQueryErrors;
|
|
5972
|
+
export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
5973
|
+
__typename?: 'HelpCenterSuccessfullyCreatedCollectionIds';
|
|
5974
|
+
helpCenterId: Scalars['ID'];
|
|
5975
|
+
collectionIds: Scalars['ID'];
|
|
5976
|
+
};
|
|
5977
|
+
export declare type HelpCenterUpdateCollectionInput = {
|
|
5978
|
+
helpCenterId: Scalars['ID'];
|
|
5979
|
+
collectionId: Scalars['ID'];
|
|
5980
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5981
|
+
name: Scalars['String'];
|
|
5982
|
+
description?: Maybe<Scalars['String']>;
|
|
5983
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5984
|
+
};
|
|
5985
|
+
export declare type HelpCenterUpdateCollectionsOrderInput = {
|
|
5986
|
+
helpCenterId: Scalars['ID'];
|
|
5987
|
+
collectionIds: Array<Scalars['ID']>;
|
|
5988
|
+
};
|
|
5989
|
+
export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
5990
|
+
__typename?: 'HelpCenterUpdateCollectionsOrderPayload';
|
|
5991
|
+
success: Scalars['Boolean'];
|
|
5992
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5993
|
+
};
|
|
5994
|
+
export declare type HelpObjectStoreHelpObject = Node & {
|
|
5995
|
+
__typename?: 'HelpObjectStoreHelpObject';
|
|
5996
|
+
id: Scalars['ID'];
|
|
5997
|
+
title: Scalars['String'];
|
|
5998
|
+
description: Scalars['String'];
|
|
5999
|
+
icon?: Maybe<HelpObjectStoreIcon>;
|
|
6000
|
+
displayLink: Scalars['URL'];
|
|
6001
|
+
};
|
|
6002
|
+
export declare type HelpObjectStoreHelpObjectResult = HelpObjectStoreHelpObject | QueryError;
|
|
6003
|
+
export declare type HelpObjectStoreIcon = {
|
|
6004
|
+
__typename?: 'HelpObjectStoreIcon';
|
|
6005
|
+
iconUrl: Scalars['URL'];
|
|
6006
|
+
};
|
|
6007
|
+
export declare type HelpObjectStoreQueryApi = {
|
|
6008
|
+
__typename?: 'HelpObjectStoreQueryApi';
|
|
6009
|
+
helpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpObjectResult>>>;
|
|
6010
|
+
};
|
|
6011
|
+
export declare type HelpObjectStoreQueryApiHelpObjectsArgs = {
|
|
6012
|
+
helpObjectARIs: Array<Scalars['ID']>;
|
|
6013
|
+
};
|
|
5673
6014
|
export declare type HostedResourcePreSignedUrl = {
|
|
5674
6015
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5675
6016
|
uploadUrl: Scalars['String'];
|
|
@@ -5810,6 +6151,7 @@ export declare enum IssueDevOpsCommitChangeType {
|
|
|
5810
6151
|
Copied = "COPIED",
|
|
5811
6152
|
Moved = "MOVED",
|
|
5812
6153
|
Modify = "MODIFY",
|
|
6154
|
+
Modified = "MODIFIED",
|
|
5813
6155
|
Unknown = "UNKNOWN"
|
|
5814
6156
|
}
|
|
5815
6157
|
export declare type IssueDevOpsCommitDetails = {
|
|
@@ -5988,7 +6330,8 @@ export declare type IssueDevOpsPullRequestReviewer = {
|
|
|
5988
6330
|
export declare enum IssueDevOpsPullRequestStatus {
|
|
5989
6331
|
Open = "OPEN",
|
|
5990
6332
|
Merged = "MERGED",
|
|
5991
|
-
Declined = "DECLINED"
|
|
6333
|
+
Declined = "DECLINED",
|
|
6334
|
+
Unknown = "UNKNOWN"
|
|
5992
6335
|
}
|
|
5993
6336
|
export declare type IssueDevOpsRemoteLink = {
|
|
5994
6337
|
__typename?: 'IssueDevOpsRemoteLink';
|
|
@@ -6074,6 +6417,16 @@ export declare type JiraAdf = {
|
|
|
6074
6417
|
__typename?: 'JiraADF';
|
|
6075
6418
|
json?: Maybe<Scalars['JSON']>;
|
|
6076
6419
|
};
|
|
6420
|
+
export declare type JiraAddIssuesToFixVersionInput = {
|
|
6421
|
+
issueIds: Array<Scalars['ID']>;
|
|
6422
|
+
versionId: Scalars['ID'];
|
|
6423
|
+
};
|
|
6424
|
+
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6425
|
+
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6426
|
+
version?: Maybe<JiraVersion>;
|
|
6427
|
+
success: Scalars['Boolean'];
|
|
6428
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6429
|
+
};
|
|
6077
6430
|
export declare type JiraAffectedService = {
|
|
6078
6431
|
__typename?: 'JiraAffectedService';
|
|
6079
6432
|
serviceId?: Maybe<Scalars['String']>;
|
|
@@ -6597,6 +6950,7 @@ export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfi
|
|
|
6597
6950
|
};
|
|
6598
6951
|
export declare type JiraComment = {
|
|
6599
6952
|
commentId: Scalars['ID'];
|
|
6953
|
+
issue?: Maybe<JiraIssue>;
|
|
6600
6954
|
webUrl?: Maybe<Scalars['URL']>;
|
|
6601
6955
|
author?: Maybe<User>;
|
|
6602
6956
|
updateAuthor?: Maybe<User>;
|
|
@@ -6605,6 +6959,10 @@ export declare type JiraComment = {
|
|
|
6605
6959
|
updated?: Maybe<Scalars['DateTime']>;
|
|
6606
6960
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
6607
6961
|
};
|
|
6962
|
+
export declare type JiraCommentByIdInput = {
|
|
6963
|
+
issueId: Scalars['ID'];
|
|
6964
|
+
id: Scalars['ID'];
|
|
6965
|
+
};
|
|
6608
6966
|
export declare type JiraCommentConnection = {
|
|
6609
6967
|
__typename?: 'JiraCommentConnection';
|
|
6610
6968
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -6792,7 +7150,7 @@ export declare type JiraDevOpsBranchDetails = {
|
|
|
6792
7150
|
providerBranchId?: Maybe<Scalars['String']>;
|
|
6793
7151
|
entityUrl?: Maybe<Scalars['URL']>;
|
|
6794
7152
|
name?: Maybe<Scalars['String']>;
|
|
6795
|
-
|
|
7153
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
6796
7154
|
};
|
|
6797
7155
|
export declare type JiraDevOpsCommitDetails = {
|
|
6798
7156
|
__typename?: 'JiraDevOpsCommitDetails';
|
|
@@ -6802,6 +7160,8 @@ export declare type JiraDevOpsCommitDetails = {
|
|
|
6802
7160
|
name?: Maybe<Scalars['String']>;
|
|
6803
7161
|
created?: Maybe<Scalars['DateTime']>;
|
|
6804
7162
|
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
7163
|
+
isMergeCommit?: Maybe<Scalars['Boolean']>;
|
|
7164
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
6805
7165
|
};
|
|
6806
7166
|
export declare type JiraDevOpsEntityAuthor = {
|
|
6807
7167
|
__typename?: 'JiraDevOpsEntityAuthor';
|
|
@@ -6973,6 +7333,7 @@ export declare type JiraForgeDatetimeField = Node & JiraIssueField & JiraIssueFi
|
|
|
6973
7333
|
dateTime?: Maybe<Scalars['DateTime']>;
|
|
6974
7334
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6975
7335
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7336
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6976
7337
|
};
|
|
6977
7338
|
export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6978
7339
|
__typename?: 'JiraForgeGroupField';
|
|
@@ -6987,6 +7348,7 @@ export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueField
|
|
|
6987
7348
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6988
7349
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6989
7350
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7351
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6990
7352
|
};
|
|
6991
7353
|
export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
6992
7354
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -7009,6 +7371,7 @@ export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7009
7371
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7010
7372
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7011
7373
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7374
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7012
7375
|
};
|
|
7013
7376
|
export declare type JiraForgeGroupsFieldSelectedGroupsConnectionArgs = {
|
|
7014
7377
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7034,6 +7397,7 @@ export declare type JiraForgeNumberField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7034
7397
|
number?: Maybe<Scalars['Float']>;
|
|
7035
7398
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7036
7399
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7400
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7037
7401
|
};
|
|
7038
7402
|
export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7039
7403
|
__typename?: 'JiraForgeObjectField';
|
|
@@ -7046,6 +7410,7 @@ export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7046
7410
|
object?: Maybe<Scalars['String']>;
|
|
7047
7411
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7048
7412
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7413
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7049
7414
|
};
|
|
7050
7415
|
export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7051
7416
|
__typename?: 'JiraForgeStringField';
|
|
@@ -7058,6 +7423,7 @@ export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7058
7423
|
text?: Maybe<Scalars['String']>;
|
|
7059
7424
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7060
7425
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7426
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7061
7427
|
};
|
|
7062
7428
|
export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7063
7429
|
__typename?: 'JiraForgeStringsField';
|
|
@@ -7073,6 +7439,7 @@ export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFie
|
|
|
7073
7439
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7074
7440
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7075
7441
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7442
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7076
7443
|
};
|
|
7077
7444
|
export declare type JiraForgeStringsFieldSelectedLabelsConnectionArgs = {
|
|
7078
7445
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7101,6 +7468,7 @@ export declare type JiraForgeUserField = Node & JiraIssueField & JiraIssueFieldC
|
|
|
7101
7468
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7102
7469
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7103
7470
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7471
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7104
7472
|
};
|
|
7105
7473
|
export declare type JiraForgeUserFieldUsersArgs = {
|
|
7106
7474
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -7124,6 +7492,7 @@ export declare type JiraForgeUsersField = Node & JiraIssueField & JiraIssueField
|
|
|
7124
7492
|
searchUrl?: Maybe<Scalars['String']>;
|
|
7125
7493
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7126
7494
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7495
|
+
renderer?: Maybe<Scalars['String']>;
|
|
7127
7496
|
};
|
|
7128
7497
|
export declare type JiraForgeUsersFieldSelectedUsersConnectionArgs = {
|
|
7129
7498
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7221,6 +7590,11 @@ export declare type JiraIssue = Node & {
|
|
|
7221
7590
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
7222
7591
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7223
7592
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
7593
|
+
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7594
|
+
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7595
|
+
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
7596
|
+
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
7597
|
+
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
7224
7598
|
};
|
|
7225
7599
|
export declare type JiraIssueFieldsArgs = {
|
|
7226
7600
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -7827,6 +8201,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
7827
8201
|
export declare type JiraIssueType = Node & {
|
|
7828
8202
|
__typename?: 'JiraIssueType';
|
|
7829
8203
|
id: Scalars['ID'];
|
|
8204
|
+
issueTypeId?: Maybe<Scalars['String']>;
|
|
7830
8205
|
name: Scalars['String'];
|
|
7831
8206
|
description?: Maybe<Scalars['String']>;
|
|
7832
8207
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -8486,21 +8861,14 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
8486
8861
|
};
|
|
8487
8862
|
export declare type JiraMutation = {
|
|
8488
8863
|
__typename?: 'JiraMutation';
|
|
8489
|
-
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8490
|
-
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8491
|
-
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8492
8864
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8493
8865
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8494
8866
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8867
|
+
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8495
8868
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8496
|
-
|
|
8497
|
-
|
|
8498
|
-
|
|
8499
|
-
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8500
|
-
};
|
|
8501
|
-
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8502
|
-
id: Scalars['ID'];
|
|
8503
|
-
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8869
|
+
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8870
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8871
|
+
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8504
8872
|
};
|
|
8505
8873
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8506
8874
|
cloudId: Scalars['ID'];
|
|
@@ -8512,9 +8880,20 @@ export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
|
8512
8880
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
8513
8881
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
8514
8882
|
};
|
|
8883
|
+
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
8884
|
+
input: JiraAddIssuesToFixVersionInput;
|
|
8885
|
+
};
|
|
8515
8886
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8516
8887
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8517
8888
|
};
|
|
8889
|
+
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
8890
|
+
id: Scalars['ID'];
|
|
8891
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8892
|
+
};
|
|
8893
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8894
|
+
id: Scalars['ID'];
|
|
8895
|
+
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8896
|
+
};
|
|
8518
8897
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8519
8898
|
__typename?: 'JiraNumberField';
|
|
8520
8899
|
id: Scalars['ID'];
|
|
@@ -8886,6 +9265,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
8886
9265
|
__typename?: 'JiraPlatformComment';
|
|
8887
9266
|
id: Scalars['ID'];
|
|
8888
9267
|
commentId: Scalars['ID'];
|
|
9268
|
+
issue?: Maybe<JiraIssue>;
|
|
8889
9269
|
webUrl?: Maybe<Scalars['URL']>;
|
|
8890
9270
|
author?: Maybe<User>;
|
|
8891
9271
|
updateAuthor?: Maybe<User>;
|
|
@@ -8967,6 +9347,7 @@ export declare type JiraProject = Node & {
|
|
|
8967
9347
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
8968
9348
|
status?: Maybe<JiraProjectStatus>;
|
|
8969
9349
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9350
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
8970
9351
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
8971
9352
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
8972
9353
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -9026,6 +9407,42 @@ export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
|
9026
9407
|
cursor: Scalars['String'];
|
|
9027
9408
|
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
9028
9409
|
};
|
|
9410
|
+
export declare type JiraProjectAndDevOpsToolRelationship = Node & {
|
|
9411
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationship';
|
|
9412
|
+
id: Scalars['ID'];
|
|
9413
|
+
jiraProject?: Maybe<JiraProject>;
|
|
9414
|
+
devOpsTool?: Maybe<DevOpsTool>;
|
|
9415
|
+
description?: Maybe<Scalars['String']>;
|
|
9416
|
+
revision: Scalars['ID'];
|
|
9417
|
+
createdBy: Scalars['String'];
|
|
9418
|
+
createdAt: Scalars['DateTime'];
|
|
9419
|
+
lastUpdatedBy?: Maybe<Scalars['String']>;
|
|
9420
|
+
lastUpdatedAt?: Maybe<Scalars['DateTime']>;
|
|
9421
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
9422
|
+
};
|
|
9423
|
+
export declare type JiraProjectAndDevOpsToolRelationshipPropertiesArgs = {
|
|
9424
|
+
keys: Array<Scalars['String']>;
|
|
9425
|
+
};
|
|
9426
|
+
export declare type JiraProjectAndDevOpsToolRelationshipCreateInput = {
|
|
9427
|
+
jiraProjectId: Scalars['ID'];
|
|
9428
|
+
devOpsToolId: Scalars['ID'];
|
|
9429
|
+
description?: Maybe<Scalars['String']>;
|
|
9430
|
+
properties?: Maybe<Array<DevOpsContainerRelationshipEntityPropertyInput>>;
|
|
9431
|
+
};
|
|
9432
|
+
export declare type JiraProjectAndDevOpsToolRelationshipCreatePayload = Payload & {
|
|
9433
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipCreatePayload';
|
|
9434
|
+
success: Scalars['Boolean'];
|
|
9435
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9436
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
9437
|
+
};
|
|
9438
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeleteInput = {
|
|
9439
|
+
id: Scalars['ID'];
|
|
9440
|
+
};
|
|
9441
|
+
export declare type JiraProjectAndDevOpsToolRelationshipDeletePayload = {
|
|
9442
|
+
__typename?: 'JiraProjectAndDevOpsToolRelationshipDeletePayload';
|
|
9443
|
+
success: Scalars['Boolean'];
|
|
9444
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9445
|
+
};
|
|
9029
9446
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
9030
9447
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
9031
9448
|
id: Scalars['ID'];
|
|
@@ -9218,25 +9635,19 @@ export declare type JiraQuery = {
|
|
|
9218
9635
|
jiraProject?: Maybe<JiraProject>;
|
|
9219
9636
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
9220
9637
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
9221
|
-
|
|
9638
|
+
filter?: Maybe<JiraFilter>;
|
|
9639
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9640
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9641
|
+
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9222
9642
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
9223
9643
|
issueContainersByTypeByKey: JiraIssueItemContainersResult;
|
|
9224
|
-
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
9225
|
-
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
9226
|
-
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
9227
|
-
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9228
|
-
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9229
|
-
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9230
9644
|
issueByKey?: Maybe<JiraIssue>;
|
|
9231
9645
|
issueById?: Maybe<JiraIssue>;
|
|
9646
|
+
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
9232
9647
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
9233
9648
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9649
|
+
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9234
9650
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
9235
|
-
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9236
|
-
filter?: Maybe<JiraFilter>;
|
|
9237
|
-
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9238
|
-
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9239
|
-
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9240
9651
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9241
9652
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
9242
9653
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -9247,6 +9658,14 @@ export declare type JiraQuery = {
|
|
|
9247
9658
|
version?: Maybe<JiraVersionResult>;
|
|
9248
9659
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
9249
9660
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
9661
|
+
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9662
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
9663
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
9664
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
9665
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
9666
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
9667
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9668
|
+
devOps?: Maybe<JiraDevOpsQuery>;
|
|
9250
9669
|
};
|
|
9251
9670
|
export declare type JiraQueryJiraProjectArgs = {
|
|
9252
9671
|
id: Scalars['ID'];
|
|
@@ -9266,39 +9685,34 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
9266
9685
|
after?: Maybe<Scalars['String']>;
|
|
9267
9686
|
before?: Maybe<Scalars['String']>;
|
|
9268
9687
|
};
|
|
9269
|
-
export declare type
|
|
9270
|
-
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
9271
|
-
};
|
|
9272
|
-
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9273
|
-
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
9274
|
-
};
|
|
9275
|
-
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
9276
|
-
cloudId: Scalars['ID'];
|
|
9277
|
-
jql: Scalars['String'];
|
|
9278
|
-
};
|
|
9279
|
-
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
9280
|
-
id: Scalars['ID'];
|
|
9281
|
-
};
|
|
9282
|
-
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
9283
|
-
ids: Array<Scalars['ID']>;
|
|
9284
|
-
};
|
|
9285
|
-
export declare type JiraQueryIssueSearchViewArgs = {
|
|
9688
|
+
export declare type JiraQueryFilterArgs = {
|
|
9286
9689
|
id: Scalars['ID'];
|
|
9287
9690
|
};
|
|
9288
|
-
export declare type
|
|
9691
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9289
9692
|
cloudId: Scalars['ID'];
|
|
9290
|
-
|
|
9291
|
-
|
|
9693
|
+
first?: Maybe<Scalars['Int']>;
|
|
9694
|
+
after?: Maybe<Scalars['String']>;
|
|
9695
|
+
last?: Maybe<Scalars['Int']>;
|
|
9696
|
+
before?: Maybe<Scalars['String']>;
|
|
9292
9697
|
};
|
|
9293
|
-
export declare type
|
|
9698
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9294
9699
|
cloudId: Scalars['ID'];
|
|
9295
|
-
|
|
9296
|
-
options?: Maybe<JiraIssueSearchOptions>;
|
|
9700
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9297
9701
|
first?: Maybe<Scalars['Int']>;
|
|
9298
9702
|
after?: Maybe<Scalars['String']>;
|
|
9299
9703
|
last?: Maybe<Scalars['Int']>;
|
|
9300
9704
|
before?: Maybe<Scalars['String']>;
|
|
9301
9705
|
};
|
|
9706
|
+
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9707
|
+
cloudId: Scalars['ID'];
|
|
9708
|
+
keys: Array<Scalars['String']>;
|
|
9709
|
+
};
|
|
9710
|
+
export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
9711
|
+
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
9712
|
+
};
|
|
9713
|
+
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9714
|
+
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
9715
|
+
};
|
|
9302
9716
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
9303
9717
|
key: Scalars['String'];
|
|
9304
9718
|
cloudId: Scalars['ID'];
|
|
@@ -9306,36 +9720,17 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
9306
9720
|
export declare type JiraQueryIssueByIdArgs = {
|
|
9307
9721
|
id: Scalars['ID'];
|
|
9308
9722
|
};
|
|
9723
|
+
export declare type JiraQueryIssuesByIdArgs = {
|
|
9724
|
+
ids: Array<Scalars['ID']>;
|
|
9725
|
+
};
|
|
9309
9726
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
9310
9727
|
issueId: Scalars['ID'];
|
|
9311
9728
|
};
|
|
9312
9729
|
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
9313
9730
|
issueKey: Scalars['String'];
|
|
9314
9731
|
};
|
|
9315
|
-
export declare type
|
|
9316
|
-
|
|
9317
|
-
keys: Array<Scalars['String']>;
|
|
9318
|
-
};
|
|
9319
|
-
export declare type JiraQueryFilterArgs = {
|
|
9320
|
-
id: Scalars['ID'];
|
|
9321
|
-
};
|
|
9322
|
-
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9323
|
-
cloudId: Scalars['ID'];
|
|
9324
|
-
first?: Maybe<Scalars['Int']>;
|
|
9325
|
-
after?: Maybe<Scalars['String']>;
|
|
9326
|
-
last?: Maybe<Scalars['Int']>;
|
|
9327
|
-
before?: Maybe<Scalars['String']>;
|
|
9328
|
-
};
|
|
9329
|
-
export declare type JiraQuerySystemFiltersArgs = {
|
|
9330
|
-
cloudId: Scalars['ID'];
|
|
9331
|
-
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9332
|
-
first?: Maybe<Scalars['Int']>;
|
|
9333
|
-
after?: Maybe<Scalars['String']>;
|
|
9334
|
-
last?: Maybe<Scalars['Int']>;
|
|
9335
|
-
before?: Maybe<Scalars['String']>;
|
|
9336
|
-
};
|
|
9337
|
-
export declare type JiraQueryJqlBuilderArgs = {
|
|
9338
|
-
cloudId: Scalars['ID'];
|
|
9732
|
+
export declare type JiraQueryCommentsByIdArgs = {
|
|
9733
|
+
input: Array<JiraCommentByIdInput>;
|
|
9339
9734
|
};
|
|
9340
9735
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
9341
9736
|
cloudId: Scalars['ID'];
|
|
@@ -9394,6 +9789,36 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
9394
9789
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
9395
9790
|
versionId: Scalars['ID'];
|
|
9396
9791
|
};
|
|
9792
|
+
export declare type JiraQueryJqlBuilderArgs = {
|
|
9793
|
+
cloudId: Scalars['ID'];
|
|
9794
|
+
};
|
|
9795
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
9796
|
+
cloudId: Scalars['ID'];
|
|
9797
|
+
jql: Scalars['String'];
|
|
9798
|
+
};
|
|
9799
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
9800
|
+
id: Scalars['ID'];
|
|
9801
|
+
};
|
|
9802
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
9803
|
+
ids: Array<Scalars['ID']>;
|
|
9804
|
+
};
|
|
9805
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
9806
|
+
id: Scalars['ID'];
|
|
9807
|
+
};
|
|
9808
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
9809
|
+
cloudId: Scalars['ID'];
|
|
9810
|
+
namespace?: Maybe<Scalars['String']>;
|
|
9811
|
+
viewId?: Maybe<Scalars['String']>;
|
|
9812
|
+
};
|
|
9813
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
9814
|
+
cloudId: Scalars['ID'];
|
|
9815
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
9816
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
9817
|
+
first?: Maybe<Scalars['Int']>;
|
|
9818
|
+
after?: Maybe<Scalars['String']>;
|
|
9819
|
+
last?: Maybe<Scalars['Int']>;
|
|
9820
|
+
before?: Maybe<Scalars['String']>;
|
|
9821
|
+
};
|
|
9397
9822
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9398
9823
|
__typename?: 'JiraRadioSelectField';
|
|
9399
9824
|
id: Scalars['ID'];
|
|
@@ -9622,6 +10047,11 @@ export declare type JiraRoleEdge = {
|
|
|
9622
10047
|
node?: Maybe<JiraRole>;
|
|
9623
10048
|
cursor: Scalars['String'];
|
|
9624
10049
|
};
|
|
10050
|
+
export declare type JiraScmRepository = {
|
|
10051
|
+
__typename?: 'JiraScmRepository';
|
|
10052
|
+
name?: Maybe<Scalars['String']>;
|
|
10053
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
10054
|
+
};
|
|
9625
10055
|
export declare type JiraSecurityLevel = Node & {
|
|
9626
10056
|
__typename?: 'JiraSecurityLevel';
|
|
9627
10057
|
id: Scalars['ID'];
|
|
@@ -9792,6 +10222,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
9792
10222
|
__typename?: 'JiraServiceManagementComment';
|
|
9793
10223
|
id: Scalars['ID'];
|
|
9794
10224
|
commentId: Scalars['ID'];
|
|
10225
|
+
issue?: Maybe<JiraIssue>;
|
|
9795
10226
|
webUrl?: Maybe<Scalars['URL']>;
|
|
9796
10227
|
author?: Maybe<User>;
|
|
9797
10228
|
updateAuthor?: Maybe<User>;
|
|
@@ -10255,6 +10686,8 @@ export declare type JiraSprint = Node & {
|
|
|
10255
10686
|
boardName?: Maybe<Scalars['String']>;
|
|
10256
10687
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10257
10688
|
endDate?: Maybe<Scalars['DateTime']>;
|
|
10689
|
+
completionDate?: Maybe<Scalars['DateTime']>;
|
|
10690
|
+
goal?: Maybe<Scalars['String']>;
|
|
10258
10691
|
};
|
|
10259
10692
|
export declare type JiraSprintConnection = {
|
|
10260
10693
|
__typename?: 'JiraSprintConnection';
|
|
@@ -10959,6 +11392,7 @@ export declare type MarketplacePartner = {
|
|
|
10959
11392
|
support?: Maybe<MarketplacePartnerSupport>;
|
|
10960
11393
|
programs?: Maybe<MarketplacePartnerPrograms>;
|
|
10961
11394
|
partnerType?: Maybe<MarketplacePartnerType>;
|
|
11395
|
+
partnerTier?: Maybe<MarketplacePartnerTier>;
|
|
10962
11396
|
};
|
|
10963
11397
|
export declare type MarketplacePartnerAddress = {
|
|
10964
11398
|
__typename?: 'MarketplacePartnerAddress';
|
|
@@ -11011,6 +11445,16 @@ export declare enum MarketplacePartnerSupportHolidayFrequency {
|
|
|
11011
11445
|
OneTime = "ONE_TIME",
|
|
11012
11446
|
Annual = "ANNUAL"
|
|
11013
11447
|
}
|
|
11448
|
+
export declare type MarketplacePartnerTier = {
|
|
11449
|
+
__typename?: 'MarketplacePartnerTier';
|
|
11450
|
+
type: MarketplacePartnerTierType;
|
|
11451
|
+
updatedDate: Scalars['String'];
|
|
11452
|
+
};
|
|
11453
|
+
export declare enum MarketplacePartnerTierType {
|
|
11454
|
+
Silver = "SILVER",
|
|
11455
|
+
Gold = "GOLD",
|
|
11456
|
+
Platinum = "PLATINUM"
|
|
11457
|
+
}
|
|
11014
11458
|
export declare enum MarketplacePartnerType {
|
|
11015
11459
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
11016
11460
|
}
|
|
@@ -11144,15 +11588,9 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
11144
11588
|
export declare type Mutation = {
|
|
11145
11589
|
__typename?: 'Mutation';
|
|
11146
11590
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
11591
|
+
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11592
|
+
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
11147
11593
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11148
|
-
createReleaseNote: ContentPlatformReleaseNote;
|
|
11149
|
-
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11150
|
-
updateReleaseNote: ContentPlatformReleaseNoteEntry;
|
|
11151
|
-
createApp?: Maybe<CreateAppResponse>;
|
|
11152
|
-
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11153
|
-
deleteApp?: Maybe<DeleteAppResponse>;
|
|
11154
|
-
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
11155
|
-
ecosystem?: Maybe<EcosystemMutation>;
|
|
11156
11594
|
jsw?: Maybe<JswMutation>;
|
|
11157
11595
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
11158
11596
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -11180,7 +11618,16 @@ export declare type Mutation = {
|
|
|
11180
11618
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
11181
11619
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11182
11620
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
11621
|
+
createApp?: Maybe<CreateAppResponse>;
|
|
11622
|
+
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11623
|
+
deleteApp?: Maybe<DeleteAppResponse>;
|
|
11624
|
+
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
11625
|
+
ecosystem?: Maybe<EcosystemMutation>;
|
|
11626
|
+
createReleaseNote: ContentPlatformReleaseNote;
|
|
11627
|
+
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11628
|
+
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11183
11629
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
11630
|
+
devOps?: Maybe<DevOpsMutation>;
|
|
11184
11631
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
11185
11632
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
11186
11633
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -11198,6 +11645,7 @@ export declare type Mutation = {
|
|
|
11198
11645
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11199
11646
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
11200
11647
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
11648
|
+
jira?: Maybe<JiraMutation>;
|
|
11201
11649
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
11202
11650
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
11203
11651
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -11206,11 +11654,10 @@ export declare type Mutation = {
|
|
|
11206
11654
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
11207
11655
|
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
11208
11656
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
11209
|
-
jira?: Maybe<JiraMutation>;
|
|
11210
11657
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
11211
11658
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11212
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11213
11659
|
appStorage?: Maybe<AppStorageMutation>;
|
|
11660
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11214
11661
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
11215
11662
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
11216
11663
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
@@ -11253,78 +11700,39 @@ export declare type Mutation = {
|
|
|
11253
11700
|
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
11254
11701
|
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
11255
11702
|
updatePolarisViewLastViewedTimestamp?: Maybe<UpdatePolarisViewTimestampPayload>;
|
|
11256
|
-
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
11257
|
-
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
11258
|
-
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
11259
|
-
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
11260
|
-
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
11261
|
-
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
11262
|
-
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
11263
|
-
userAuthTokenForExtension: UserAuthTokenForExtensionResponse;
|
|
11264
|
-
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
11265
|
-
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
11266
|
-
|
|
11267
|
-
|
|
11268
|
-
|
|
11269
|
-
|
|
11270
|
-
|
|
11271
|
-
|
|
11272
|
-
|
|
11273
|
-
|
|
11274
|
-
|
|
11275
|
-
|
|
11276
|
-
|
|
11277
|
-
|
|
11278
|
-
|
|
11279
|
-
|
|
11280
|
-
|
|
11281
|
-
|
|
11282
|
-
|
|
11283
|
-
export declare type MutationCreateReleaseNoteArgs = {
|
|
11284
|
-
changeStatus?: Maybe<Scalars['String']>;
|
|
11285
|
-
title?: Maybe<Scalars['String']>;
|
|
11286
|
-
changeType?: Maybe<Scalars['String']>;
|
|
11287
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11288
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11289
|
-
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11290
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11291
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11292
|
-
announcementPlan?: Maybe<Scalars['String']>;
|
|
11293
|
-
productNames?: Maybe<Array<Scalars['String']>>;
|
|
11294
|
-
productIds?: Maybe<Array<Scalars['String']>>;
|
|
11295
|
-
description: Scalars['JSON'];
|
|
11296
|
-
changeCategory?: Maybe<Scalars['String']>;
|
|
11297
|
-
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11298
|
-
};
|
|
11299
|
-
export declare type MutationPublishReleaseNoteArgs = {
|
|
11300
|
-
id: Scalars['String'];
|
|
11301
|
-
};
|
|
11302
|
-
export declare type MutationUpdateReleaseNoteArgs = {
|
|
11303
|
-
id: Scalars['String'];
|
|
11304
|
-
changeStatus?: Maybe<Scalars['String']>;
|
|
11305
|
-
title?: Maybe<Scalars['String']>;
|
|
11306
|
-
changeType?: Maybe<Scalars['String']>;
|
|
11307
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11308
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11309
|
-
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11310
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11311
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11312
|
-
announcementPlan?: Maybe<Scalars['String']>;
|
|
11313
|
-
changeCategory?: Maybe<Scalars['String']>;
|
|
11314
|
-
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11315
|
-
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
11316
|
-
};
|
|
11317
|
-
export declare type MutationCreateAppArgs = {
|
|
11318
|
-
input: CreateAppInput;
|
|
11319
|
-
};
|
|
11320
|
-
export declare type MutationUpdateAppDetailsArgs = {
|
|
11321
|
-
input: UpdateAppDetailsInput;
|
|
11703
|
+
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
11704
|
+
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
11705
|
+
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
11706
|
+
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
11707
|
+
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
11708
|
+
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
11709
|
+
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
11710
|
+
userAuthTokenForExtension: UserAuthTokenForExtensionResponse;
|
|
11711
|
+
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
11712
|
+
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
11713
|
+
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11714
|
+
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
11715
|
+
installApp?: Maybe<AppInstallationResponse>;
|
|
11716
|
+
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
11717
|
+
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
11718
|
+
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
11719
|
+
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
11720
|
+
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
11721
|
+
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
11722
|
+
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
11723
|
+
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11724
|
+
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11725
|
+
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11726
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11727
|
+
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11728
|
+
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11729
|
+
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
11322
11730
|
};
|
|
11323
|
-
export declare type
|
|
11324
|
-
input:
|
|
11731
|
+
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11732
|
+
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
11325
11733
|
};
|
|
11326
|
-
export declare type
|
|
11327
|
-
input:
|
|
11734
|
+
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11735
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
11328
11736
|
};
|
|
11329
11737
|
export declare type MutationCreateColumnArgs = {
|
|
11330
11738
|
input?: Maybe<CreateColumnInput>;
|
|
@@ -11404,6 +11812,52 @@ export declare type MutationToggleBoardFeatureArgs = {
|
|
|
11404
11812
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
11405
11813
|
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
11406
11814
|
};
|
|
11815
|
+
export declare type MutationCreateAppArgs = {
|
|
11816
|
+
input: CreateAppInput;
|
|
11817
|
+
};
|
|
11818
|
+
export declare type MutationUpdateAppDetailsArgs = {
|
|
11819
|
+
input: UpdateAppDetailsInput;
|
|
11820
|
+
};
|
|
11821
|
+
export declare type MutationDeleteAppArgs = {
|
|
11822
|
+
input: DeleteAppInput;
|
|
11823
|
+
};
|
|
11824
|
+
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
11825
|
+
input: UpdateAtlassianOAuthClientInput;
|
|
11826
|
+
};
|
|
11827
|
+
export declare type MutationCreateReleaseNoteArgs = {
|
|
11828
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11829
|
+
title?: Maybe<Scalars['String']>;
|
|
11830
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11831
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11832
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11833
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11834
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11835
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11836
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11837
|
+
productNames?: Maybe<Array<Scalars['String']>>;
|
|
11838
|
+
productIds?: Maybe<Array<Scalars['String']>>;
|
|
11839
|
+
description: Scalars['JSON'];
|
|
11840
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11841
|
+
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11842
|
+
};
|
|
11843
|
+
export declare type MutationPublishReleaseNoteArgs = {
|
|
11844
|
+
id: Scalars['String'];
|
|
11845
|
+
};
|
|
11846
|
+
export declare type MutationUpdateReleaseNoteArgs = {
|
|
11847
|
+
id: Scalars['String'];
|
|
11848
|
+
changeStatus?: Maybe<Scalars['String']>;
|
|
11849
|
+
title?: Maybe<Scalars['String']>;
|
|
11850
|
+
changeType?: Maybe<Scalars['String']>;
|
|
11851
|
+
fdIssueKey?: Maybe<Scalars['String']>;
|
|
11852
|
+
fdIssueLink?: Maybe<Scalars['String']>;
|
|
11853
|
+
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
11854
|
+
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
11855
|
+
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
11856
|
+
announcementPlan?: Maybe<Scalars['String']>;
|
|
11857
|
+
changeCategory?: Maybe<Scalars['String']>;
|
|
11858
|
+
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
11859
|
+
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
11860
|
+
};
|
|
11407
11861
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
11408
11862
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
11409
11863
|
};
|
|
@@ -11650,6 +12104,12 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
11650
12104
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
11651
12105
|
id: Scalars['ID'];
|
|
11652
12106
|
};
|
|
12107
|
+
export declare type MutationWatchMarketplaceAppArgs = {
|
|
12108
|
+
id: Scalars['ID'];
|
|
12109
|
+
};
|
|
12110
|
+
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
12111
|
+
id: Scalars['ID'];
|
|
12112
|
+
};
|
|
11653
12113
|
export declare type MutationInstallAppArgs = {
|
|
11654
12114
|
input: AppInstallationInput;
|
|
11655
12115
|
};
|
|
@@ -11665,12 +12125,6 @@ export declare type MutationSubscribeToAppArgs = {
|
|
|
11665
12125
|
export declare type MutationUnsubscribeFromAppArgs = {
|
|
11666
12126
|
input: AppUnsubscribeInput;
|
|
11667
12127
|
};
|
|
11668
|
-
export declare type MutationWatchMarketplaceAppArgs = {
|
|
11669
|
-
id: Scalars['ID'];
|
|
11670
|
-
};
|
|
11671
|
-
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
11672
|
-
id: Scalars['ID'];
|
|
11673
|
-
};
|
|
11674
12128
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
11675
12129
|
input: CreateAppDeploymentUrlInput;
|
|
11676
12130
|
};
|
|
@@ -12525,6 +12979,7 @@ export declare type PolarisMatrixAxis = {
|
|
|
12525
12979
|
__typename?: 'PolarisMatrixAxis';
|
|
12526
12980
|
dimension: Scalars['String'];
|
|
12527
12981
|
field: PolarisIdeaField;
|
|
12982
|
+
fieldOptions?: Maybe<Array<PolarisGroupValue>>;
|
|
12528
12983
|
};
|
|
12529
12984
|
export declare type PolarisMatrixConfig = {
|
|
12530
12985
|
__typename?: 'PolarisMatrixConfig';
|
|
@@ -12929,33 +13384,36 @@ export declare type ProjectAvatars = {
|
|
|
12929
13384
|
};
|
|
12930
13385
|
export declare type Query = {
|
|
12931
13386
|
__typename?: 'Query';
|
|
12932
|
-
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
12933
13387
|
echo?: Maybe<Scalars['String']>;
|
|
12934
13388
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
12935
13389
|
node?: Maybe<Node>;
|
|
13390
|
+
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13391
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
12936
13392
|
activities?: Maybe<Activities>;
|
|
12937
13393
|
activity?: Maybe<Activity>;
|
|
12938
13394
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
12939
|
-
bitbucket?: Maybe<BitbucketQuery>;
|
|
12940
13395
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13396
|
+
bitbucket?: Maybe<BitbucketQuery>;
|
|
12941
13397
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
12942
|
-
|
|
12943
|
-
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
12944
|
-
practicePages: ContentPlatformPracticePagesConnection;
|
|
12945
|
-
practicePage: ContentPlatformPracticePage;
|
|
12946
|
-
apps?: Maybe<AppConnection>;
|
|
12947
|
-
app?: Maybe<App>;
|
|
12948
|
-
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13398
|
+
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
12949
13399
|
jsw?: Maybe<JswQuery>;
|
|
12950
13400
|
boardScope?: Maybe<BoardScope>;
|
|
12951
13401
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
13402
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13403
|
+
apps?: Maybe<AppConnection>;
|
|
13404
|
+
app?: Maybe<App>;
|
|
13405
|
+
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13406
|
+
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
13407
|
+
releaseNote: ContentPlatformReleaseNote;
|
|
13408
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
13409
|
+
practicePage: ContentPlatformPracticePage;
|
|
12952
13410
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
12953
13411
|
search?: Maybe<SearchQueryApi>;
|
|
12954
|
-
|
|
13412
|
+
townsquare?: Maybe<TownsquareQueryApi>;
|
|
12955
13413
|
me: AuthenticationContext;
|
|
12956
13414
|
user?: Maybe<User>;
|
|
12957
13415
|
users?: Maybe<Array<User>>;
|
|
12958
|
-
|
|
13416
|
+
devOps?: Maybe<DevOps>;
|
|
12959
13417
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12960
13418
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12961
13419
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
@@ -12972,26 +13430,27 @@ export declare type Query = {
|
|
|
12972
13430
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
12973
13431
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
12974
13432
|
codeInJira?: Maybe<CodeInJira>;
|
|
13433
|
+
jira?: Maybe<JiraQuery>;
|
|
12975
13434
|
devOpsService?: Maybe<DevOpsService>;
|
|
12976
13435
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
12977
13436
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
12978
13437
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
12979
13438
|
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
12980
13439
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
12981
|
-
|
|
13440
|
+
avocado?: Maybe<Avocado>;
|
|
12982
13441
|
appLogs?: Maybe<AppLogConnection>;
|
|
12983
13442
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
12984
13443
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
12985
13444
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
12986
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
12987
13445
|
team?: Maybe<TeamQuery>;
|
|
13446
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
12988
13447
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
12989
13448
|
testing?: Maybe<Testing>;
|
|
12990
13449
|
movie?: Maybe<TestingMovie>;
|
|
12991
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12992
13450
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
12993
13451
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
12994
13452
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
13453
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12995
13454
|
polarisProject?: Maybe<PolarisProject>;
|
|
12996
13455
|
polarisView?: Maybe<PolarisView>;
|
|
12997
13456
|
polarisAPIVersion?: Maybe<Scalars['String']>;
|
|
@@ -13008,20 +13467,21 @@ export declare type Query = {
|
|
|
13008
13467
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
13009
13468
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
13010
13469
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
13011
|
-
dvcs?: Maybe<DvcsQuery>;
|
|
13012
13470
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13471
|
+
dvcs?: Maybe<DvcsQuery>;
|
|
13013
13472
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
13014
|
-
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13015
|
-
ecosystem?: Maybe<EcosystemQuery>;
|
|
13016
|
-
jiraReleases?: Maybe<JiraReleases>;
|
|
13017
13473
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
13018
13474
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
13019
13475
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
13020
13476
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
13021
13477
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
13022
13478
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
13023
|
-
|
|
13479
|
+
jiraReleases?: Maybe<JiraReleases>;
|
|
13480
|
+
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13481
|
+
ecosystem?: Maybe<EcosystemQuery>;
|
|
13024
13482
|
appDeployment?: Maybe<AppDeployment>;
|
|
13483
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13484
|
+
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
13025
13485
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
13026
13486
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
13027
13487
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
@@ -13030,23 +13490,17 @@ export declare type Query = {
|
|
|
13030
13490
|
export declare type QueryNodeArgs = {
|
|
13031
13491
|
id: Scalars['ID'];
|
|
13032
13492
|
};
|
|
13033
|
-
export declare type
|
|
13034
|
-
|
|
13035
|
-
first?: Maybe<Scalars['Int']>;
|
|
13036
|
-
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13037
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13038
|
-
orderBy?: Maybe<Scalars['String']>;
|
|
13493
|
+
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13494
|
+
id: Scalars['ID'];
|
|
13039
13495
|
};
|
|
13040
|
-
export declare type
|
|
13041
|
-
|
|
13042
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13496
|
+
export declare type QueryBoardScopeArgs = {
|
|
13497
|
+
boardId: Scalars['ID'];
|
|
13043
13498
|
};
|
|
13044
|
-
export declare type
|
|
13045
|
-
|
|
13046
|
-
first?: Maybe<Scalars['Int']>;
|
|
13499
|
+
export declare type QueryDevelopmentInformationArgs = {
|
|
13500
|
+
issueId: Scalars['ID'];
|
|
13047
13501
|
};
|
|
13048
|
-
export declare type
|
|
13049
|
-
|
|
13502
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13503
|
+
projectAri: Scalars['ID'];
|
|
13050
13504
|
};
|
|
13051
13505
|
export declare type QueryAppsArgs = {
|
|
13052
13506
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13061,11 +13515,23 @@ export declare type QueryAppArgs = {
|
|
|
13061
13515
|
export declare type QueryAppHostServicesArgs = {
|
|
13062
13516
|
filter?: Maybe<AppServicesFilter>;
|
|
13063
13517
|
};
|
|
13064
|
-
export declare type
|
|
13065
|
-
|
|
13518
|
+
export declare type QueryReleaseNotesArgs = {
|
|
13519
|
+
after?: Maybe<Scalars['String']>;
|
|
13520
|
+
first?: Maybe<Scalars['Int']>;
|
|
13521
|
+
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
13522
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13523
|
+
orderBy?: Maybe<Scalars['String']>;
|
|
13066
13524
|
};
|
|
13067
|
-
export declare type
|
|
13068
|
-
|
|
13525
|
+
export declare type QueryReleaseNoteArgs = {
|
|
13526
|
+
id: Scalars['String'];
|
|
13527
|
+
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13528
|
+
};
|
|
13529
|
+
export declare type QueryPracticePagesArgs = {
|
|
13530
|
+
after?: Maybe<Scalars['String']>;
|
|
13531
|
+
first?: Maybe<Scalars['Int']>;
|
|
13532
|
+
};
|
|
13533
|
+
export declare type QueryPracticePageArgs = {
|
|
13534
|
+
id: Scalars['String'];
|
|
13069
13535
|
};
|
|
13070
13536
|
export declare type QueryUserArgs = {
|
|
13071
13537
|
accountId: Scalars['ID'];
|
|
@@ -13279,9 +13745,6 @@ export declare type QueryWebTriggerUrlsByAppContextArgs = {
|
|
|
13279
13745
|
envId: Scalars['ID'];
|
|
13280
13746
|
contextId: Scalars['ID'];
|
|
13281
13747
|
};
|
|
13282
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
13283
|
-
id: Scalars['ID'];
|
|
13284
|
-
};
|
|
13285
13748
|
export declare type QueryMarketplacePartnerArgs = {
|
|
13286
13749
|
id: Scalars['ID'];
|
|
13287
13750
|
};
|
|
@@ -13299,6 +13762,9 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
13299
13762
|
hostingType: AtlassianProductHostingType;
|
|
13300
13763
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
13301
13764
|
};
|
|
13765
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
13766
|
+
id: Scalars['ID'];
|
|
13767
|
+
};
|
|
13302
13768
|
export declare type QueryAppDeploymentArgs = {
|
|
13303
13769
|
appId: Scalars['ID'];
|
|
13304
13770
|
environmentKey: Scalars['String'];
|
|
@@ -13350,7 +13816,11 @@ export declare type RankingDiffPayload = {
|
|
|
13350
13816
|
};
|
|
13351
13817
|
export declare enum RateLimitingCurrency {
|
|
13352
13818
|
TestingService = "TESTING_SERVICE",
|
|
13819
|
+
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
13820
|
+
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
13353
13821
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
13822
|
+
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
13823
|
+
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
13354
13824
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
13355
13825
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
13356
13826
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
@@ -13473,6 +13943,10 @@ export declare type RoadmapAddItemResponse = {
|
|
|
13473
13943
|
item?: Maybe<RoadmapItem>;
|
|
13474
13944
|
matchesSource: Scalars['Boolean'];
|
|
13475
13945
|
};
|
|
13946
|
+
export declare type RoadmapAddLevelOneIssueTypeHealthcheckResolution = {
|
|
13947
|
+
create?: Maybe<RoadmapCreateLevelOneIssueType>;
|
|
13948
|
+
promote?: Maybe<RoadmapPromoteLevelOneIssueType>;
|
|
13949
|
+
};
|
|
13476
13950
|
export declare type RoadmapBoardConfiguration = {
|
|
13477
13951
|
__typename?: 'RoadmapBoardConfiguration';
|
|
13478
13952
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -13494,10 +13968,20 @@ export declare type RoadmapConfiguration = {
|
|
|
13494
13968
|
dependencies?: Maybe<RoadmapDependencyConfiguration>;
|
|
13495
13969
|
externalConfiguration?: Maybe<RoadmapExternalConfiguration>;
|
|
13496
13970
|
projectConfigurations: Array<RoadmapProjectConfiguration>;
|
|
13971
|
+
projectConfiguration?: Maybe<RoadmapProjectConfiguration>;
|
|
13497
13972
|
statusCategories: Array<RoadmapStatusCategory>;
|
|
13498
13973
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
13499
13974
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
13500
13975
|
};
|
|
13976
|
+
export declare type RoadmapContent = {
|
|
13977
|
+
__typename?: 'RoadmapContent';
|
|
13978
|
+
configuration: RoadmapConfiguration;
|
|
13979
|
+
items: RoadmapItemConnection;
|
|
13980
|
+
};
|
|
13981
|
+
export declare type RoadmapCreateLevelOneIssueType = {
|
|
13982
|
+
epicTypeName: Scalars['String'];
|
|
13983
|
+
epicTypeDescription: Scalars['String'];
|
|
13984
|
+
};
|
|
13501
13985
|
export declare type RoadmapCreationPreferences = {
|
|
13502
13986
|
__typename?: 'RoadmapCreationPreferences';
|
|
13503
13987
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -13514,6 +13998,9 @@ export declare type RoadmapDetails = {
|
|
|
13514
13998
|
roadmapConfiguration?: Maybe<RoadmapConfiguration>;
|
|
13515
13999
|
roadmapItems?: Maybe<RoadmapItemConnection>;
|
|
13516
14000
|
metadata?: Maybe<RoadmapMetadata>;
|
|
14001
|
+
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
14002
|
+
healthcheck?: Maybe<RoadmapHealthCheck>;
|
|
14003
|
+
content?: Maybe<RoadmapContent>;
|
|
13517
14004
|
};
|
|
13518
14005
|
export declare enum RoadmapEpicView {
|
|
13519
14006
|
All = "ALL",
|
|
@@ -13550,6 +14037,24 @@ export declare type RoadmapFilterConfiguration = {
|
|
|
13550
14037
|
__typename?: 'RoadmapFilterConfiguration';
|
|
13551
14038
|
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13552
14039
|
};
|
|
14040
|
+
export declare type RoadmapHealthCheck = {
|
|
14041
|
+
__typename?: 'RoadmapHealthCheck';
|
|
14042
|
+
title: Scalars['String'];
|
|
14043
|
+
explanation: Scalars['String'];
|
|
14044
|
+
learnMore: RoadmapHealthCheckLink;
|
|
14045
|
+
resolution?: Maybe<RoadmapHealthCheckResolution>;
|
|
14046
|
+
};
|
|
14047
|
+
export declare type RoadmapHealthCheckLink = {
|
|
14048
|
+
__typename?: 'RoadmapHealthCheckLink';
|
|
14049
|
+
text: Scalars['String'];
|
|
14050
|
+
url: Scalars['String'];
|
|
14051
|
+
};
|
|
14052
|
+
export declare type RoadmapHealthCheckResolution = {
|
|
14053
|
+
__typename?: 'RoadmapHealthCheckResolution';
|
|
14054
|
+
label: Scalars['String'];
|
|
14055
|
+
actionId: Scalars['ID'];
|
|
14056
|
+
fallbackMessage: Scalars['String'];
|
|
14057
|
+
};
|
|
13553
14058
|
export declare type RoadmapItem = {
|
|
13554
14059
|
__typename?: 'RoadmapItem';
|
|
13555
14060
|
id: Scalars['ID'];
|
|
@@ -13586,6 +14091,10 @@ export declare type RoadmapItemEdge = {
|
|
|
13586
14091
|
cursor: Scalars['String'];
|
|
13587
14092
|
node?: Maybe<RoadmapItem>;
|
|
13588
14093
|
};
|
|
14094
|
+
export declare type RoadmapItemRankInput = {
|
|
14095
|
+
id: Scalars['ID'];
|
|
14096
|
+
position: RoadmapRankPosition;
|
|
14097
|
+
};
|
|
13589
14098
|
export declare type RoadmapItemStatus = {
|
|
13590
14099
|
__typename?: 'RoadmapItemStatus';
|
|
13591
14100
|
id: Scalars['ID'];
|
|
@@ -13689,12 +14198,41 @@ export declare type RoadmapProjectValidation = {
|
|
|
13689
14198
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13690
14199
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13691
14200
|
};
|
|
14201
|
+
export declare type RoadmapPromoteLevelOneIssueType = {
|
|
14202
|
+
promoteItemTypeId: Scalars['ID'];
|
|
14203
|
+
};
|
|
13692
14204
|
export declare type RoadmapQuickFilter = {
|
|
13693
14205
|
__typename?: 'RoadmapQuickFilter';
|
|
13694
14206
|
id: Scalars['ID'];
|
|
13695
14207
|
name: Scalars['String'];
|
|
13696
14208
|
query: Scalars['String'];
|
|
13697
14209
|
};
|
|
14210
|
+
export declare enum RoadmapRankPosition {
|
|
14211
|
+
Before = "BEFORE",
|
|
14212
|
+
After = "AFTER"
|
|
14213
|
+
}
|
|
14214
|
+
export declare type RoadmapResolveHealthcheckInput = {
|
|
14215
|
+
actionId: Scalars['ID'];
|
|
14216
|
+
addLevelOneIssueType?: Maybe<RoadmapAddLevelOneIssueTypeHealthcheckResolution>;
|
|
14217
|
+
};
|
|
14218
|
+
export declare type RoadmapResolveHealthcheckPayload = Payload & {
|
|
14219
|
+
__typename?: 'RoadmapResolveHealthcheckPayload';
|
|
14220
|
+
success: Scalars['Boolean'];
|
|
14221
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14222
|
+
};
|
|
14223
|
+
export declare type RoadmapScheduleItemInput = {
|
|
14224
|
+
itemId: Scalars['ID'];
|
|
14225
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
14226
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
14227
|
+
};
|
|
14228
|
+
export declare type RoadmapScheduleItemsInput = {
|
|
14229
|
+
scheduleRequests: Array<Maybe<RoadmapScheduleItemInput>>;
|
|
14230
|
+
};
|
|
14231
|
+
export declare type RoadmapScheduleItemsPayload = Payload & {
|
|
14232
|
+
__typename?: 'RoadmapScheduleItemsPayload';
|
|
14233
|
+
success: Scalars['Boolean'];
|
|
14234
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14235
|
+
};
|
|
13698
14236
|
export declare type RoadmapSprint = {
|
|
13699
14237
|
__typename?: 'RoadmapSprint';
|
|
13700
14238
|
id: Scalars['ID'];
|
|
@@ -13741,7 +14279,7 @@ export declare type RoadmapUpdateItemInput = {
|
|
|
13741
14279
|
dueDate?: Maybe<Scalars['Date']>;
|
|
13742
14280
|
startDate?: Maybe<Scalars['Date']>;
|
|
13743
14281
|
color?: Maybe<RoadmapPaletteColor>;
|
|
13744
|
-
rank?: Maybe<
|
|
14282
|
+
rank?: Maybe<RoadmapItemRankInput>;
|
|
13745
14283
|
parentId?: Maybe<Scalars['ID']>;
|
|
13746
14284
|
sprintId?: Maybe<Scalars['ID']>;
|
|
13747
14285
|
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
@@ -13752,10 +14290,6 @@ export declare type RoadmapUpdateItemPayload = Payload & {
|
|
|
13752
14290
|
errors?: Maybe<Array<MutationError>>;
|
|
13753
14291
|
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
13754
14292
|
};
|
|
13755
|
-
export declare type RoadmapUpdateItemRank = {
|
|
13756
|
-
beforeId?: Maybe<Scalars['ID']>;
|
|
13757
|
-
afterId?: Maybe<Scalars['ID']>;
|
|
13758
|
-
};
|
|
13759
14293
|
export declare type RoadmapUpdateItemResponse = {
|
|
13760
14294
|
__typename?: 'RoadmapUpdateItemResponse';
|
|
13761
14295
|
item?: Maybe<RoadmapItem>;
|
|
@@ -13791,14 +14325,20 @@ export declare type RoadmapViewSettings = {
|
|
|
13791
14325
|
export declare type RoadmapsMutation = {
|
|
13792
14326
|
__typename?: 'RoadmapsMutation';
|
|
13793
14327
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
14328
|
+
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
13794
14329
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13795
14330
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
14331
|
+
scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
|
|
13796
14332
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13797
14333
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13798
14334
|
};
|
|
13799
14335
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13800
14336
|
input: RoadmapFeatureToggleInput;
|
|
13801
14337
|
};
|
|
14338
|
+
export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
14339
|
+
sourceARI: Scalars['ID'];
|
|
14340
|
+
input: RoadmapResolveHealthcheckInput;
|
|
14341
|
+
};
|
|
13802
14342
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13803
14343
|
sourceARI: Scalars['ID'];
|
|
13804
14344
|
input: RoadmapAddItemInput;
|
|
@@ -13807,6 +14347,10 @@ export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
|
13807
14347
|
sourceARI: Scalars['ID'];
|
|
13808
14348
|
input: RoadmapUpdateItemInput;
|
|
13809
14349
|
};
|
|
14350
|
+
export declare type RoadmapsMutationScheduleRoadmapItemsArgs = {
|
|
14351
|
+
sourceARI: Scalars['ID'];
|
|
14352
|
+
input: RoadmapScheduleItemsInput;
|
|
14353
|
+
};
|
|
13810
14354
|
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
13811
14355
|
sourceARI: Scalars['ID'];
|
|
13812
14356
|
input: RoadmapToggleDependencyInput;
|
|
@@ -13846,6 +14390,7 @@ export declare enum Scope {
|
|
|
13846
14390
|
AuthConfluenceUser = "AUTH_CONFLUENCE_USER",
|
|
13847
14391
|
ManageDirectory = "MANAGE_DIRECTORY",
|
|
13848
14392
|
ReadMe = "READ_ME",
|
|
14393
|
+
ReadAccount = "READ_ACCOUNT",
|
|
13849
14394
|
ViewUserprofile = "VIEW_USERPROFILE",
|
|
13850
14395
|
IdentityAtlassianExternal = "IDENTITY_ATLASSIAN_EXTERNAL",
|
|
13851
14396
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
@@ -13902,6 +14447,8 @@ export declare enum Scope {
|
|
|
13902
14447
|
WriteConfluenceSpacePermission = "WRITE_CONFLUENCE_SPACE_PERMISSION",
|
|
13903
14448
|
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
13904
14449
|
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
14450
|
+
ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
|
|
14451
|
+
WriteConfluenceUserProperty = "WRITE_CONFLUENCE_USER_PROPERTY",
|
|
13905
14452
|
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
13906
14453
|
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
13907
14454
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
@@ -14145,7 +14692,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
14145
14692
|
};
|
|
14146
14693
|
export declare type ShepherdAlert = {
|
|
14147
14694
|
__typename?: 'ShepherdAlert';
|
|
14148
|
-
|
|
14695
|
+
assignee?: Maybe<ShepherdUser>;
|
|
14149
14696
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14150
14697
|
createdOn: Scalars['DateTime'];
|
|
14151
14698
|
id: Scalars['ID'];
|
|
@@ -14182,6 +14729,7 @@ export declare type ShepherdAppInfo = {
|
|
|
14182
14729
|
loginUrl: Scalars['String'];
|
|
14183
14730
|
};
|
|
14184
14731
|
export declare type ShepherdCreateAlertInput = {
|
|
14732
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
14185
14733
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14186
14734
|
orgId: Scalars['ID'];
|
|
14187
14735
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -14193,6 +14741,10 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
14193
14741
|
node?: Maybe<ShepherdAlert>;
|
|
14194
14742
|
success: Scalars['Boolean'];
|
|
14195
14743
|
};
|
|
14744
|
+
export declare type ShepherdCreateEmailInput = {
|
|
14745
|
+
email?: Maybe<Scalars['String']>;
|
|
14746
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14747
|
+
};
|
|
14196
14748
|
export declare type ShepherdCreateOrganizationInput = {
|
|
14197
14749
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14198
14750
|
id: Scalars['ID'];
|
|
@@ -14203,6 +14755,41 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
|
14203
14755
|
node?: Maybe<ShepherdOrganization>;
|
|
14204
14756
|
success: Scalars['Boolean'];
|
|
14205
14757
|
};
|
|
14758
|
+
export declare type ShepherdCreateSubscriptionInput = {
|
|
14759
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14760
|
+
orgId: Scalars['ID'];
|
|
14761
|
+
webhook?: Maybe<ShepherdCreateWebhookInput>;
|
|
14762
|
+
};
|
|
14763
|
+
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14764
|
+
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14765
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14766
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14767
|
+
success: Scalars['Boolean'];
|
|
14768
|
+
};
|
|
14769
|
+
export declare type ShepherdCreateWebhookInput = {
|
|
14770
|
+
authToken?: Maybe<Scalars['String']>;
|
|
14771
|
+
callbackURL: Scalars['URL'];
|
|
14772
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14773
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14774
|
+
};
|
|
14775
|
+
export declare type ShepherdEmailConnection = {
|
|
14776
|
+
__typename?: 'ShepherdEmailConnection';
|
|
14777
|
+
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
14778
|
+
};
|
|
14779
|
+
export declare type ShepherdEmailEdge = {
|
|
14780
|
+
__typename?: 'ShepherdEmailEdge';
|
|
14781
|
+
node?: Maybe<ShepherdEmailSubscription>;
|
|
14782
|
+
};
|
|
14783
|
+
export declare type ShepherdEmailSubscription = ShepherdSubscription & {
|
|
14784
|
+
__typename?: 'ShepherdEmailSubscription';
|
|
14785
|
+
createdBy: Scalars['String'];
|
|
14786
|
+
createdOn: Scalars['DateTime'];
|
|
14787
|
+
email: Scalars['String'];
|
|
14788
|
+
id: Scalars['ID'];
|
|
14789
|
+
status: ShepherdSubscriptionStatus;
|
|
14790
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14791
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14792
|
+
};
|
|
14206
14793
|
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
14207
14794
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
14208
14795
|
errorType?: Maybe<Scalars['String']>;
|
|
@@ -14213,8 +14800,10 @@ export declare type ShepherdMutation = {
|
|
|
14213
14800
|
__typename?: 'ShepherdMutation';
|
|
14214
14801
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
14215
14802
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
14803
|
+
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
14216
14804
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
14217
14805
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
14806
|
+
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
14218
14807
|
};
|
|
14219
14808
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
14220
14809
|
input: ShepherdCreateAlertInput;
|
|
@@ -14222,6 +14811,9 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
14222
14811
|
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
14223
14812
|
input: ShepherdCreateOrganizationInput;
|
|
14224
14813
|
};
|
|
14814
|
+
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
14815
|
+
input: ShepherdCreateSubscriptionInput;
|
|
14816
|
+
};
|
|
14225
14817
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
14226
14818
|
id: Scalars['ID'];
|
|
14227
14819
|
input: ShepherdUpdateAlertInput;
|
|
@@ -14230,19 +14822,25 @@ export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
|
14230
14822
|
id: Scalars['ID'];
|
|
14231
14823
|
input: ShepherdUpdateOrganizationInput;
|
|
14232
14824
|
};
|
|
14825
|
+
export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
14826
|
+
id: Scalars['ID'];
|
|
14827
|
+
input: ShepherdUpdateSubscriptionInput;
|
|
14828
|
+
};
|
|
14233
14829
|
export declare type ShepherdOrganization = {
|
|
14234
14830
|
__typename?: 'ShepherdOrganization';
|
|
14235
14831
|
createdOn: Scalars['DateTime'];
|
|
14236
14832
|
enabled: Scalars['Boolean'];
|
|
14237
14833
|
id: Scalars['ID'];
|
|
14834
|
+
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
14238
14835
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14239
14836
|
};
|
|
14837
|
+
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
14240
14838
|
export declare type ShepherdQuery = {
|
|
14241
14839
|
__typename?: 'ShepherdQuery';
|
|
14242
14840
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
14243
14841
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
14244
14842
|
shepherdAppInfo: ShepherdAppInfo;
|
|
14245
|
-
shepherdOrganization?: Maybe<
|
|
14843
|
+
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
14246
14844
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
14247
14845
|
};
|
|
14248
14846
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -14258,7 +14856,21 @@ export declare enum ShepherdQueryErrorType {
|
|
|
14258
14856
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
14259
14857
|
Unauthorized = "UNAUTHORIZED"
|
|
14260
14858
|
}
|
|
14859
|
+
export declare type ShepherdSubscription = {
|
|
14860
|
+
createdBy: Scalars['String'];
|
|
14861
|
+
createdOn: Scalars['DateTime'];
|
|
14862
|
+
id: Scalars['ID'];
|
|
14863
|
+
status: ShepherdSubscriptionStatus;
|
|
14864
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14865
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14866
|
+
};
|
|
14867
|
+
export declare enum ShepherdSubscriptionStatus {
|
|
14868
|
+
Active = "ACTIVE",
|
|
14869
|
+
Inactive = "INACTIVE"
|
|
14870
|
+
}
|
|
14871
|
+
export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
|
|
14261
14872
|
export declare type ShepherdUpdateAlertInput = {
|
|
14873
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
14262
14874
|
status?: Maybe<ShepherdAlertStatus>;
|
|
14263
14875
|
};
|
|
14264
14876
|
export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
@@ -14267,6 +14879,10 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
14267
14879
|
node?: Maybe<ShepherdAlert>;
|
|
14268
14880
|
success: Scalars['Boolean'];
|
|
14269
14881
|
};
|
|
14882
|
+
export declare type ShepherdUpdateEmailInput = {
|
|
14883
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14884
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14885
|
+
};
|
|
14270
14886
|
export declare type ShepherdUpdateOrganizationInput = {
|
|
14271
14887
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14272
14888
|
};
|
|
@@ -14276,10 +14892,50 @@ export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
|
14276
14892
|
node?: Maybe<ShepherdOrganization>;
|
|
14277
14893
|
success: Scalars['Boolean'];
|
|
14278
14894
|
};
|
|
14895
|
+
export declare type ShepherdUpdateSubscriptionInput = {
|
|
14896
|
+
email?: Maybe<ShepherdUpdateEmailInput>;
|
|
14897
|
+
orgId: Scalars['ID'];
|
|
14898
|
+
webhook?: Maybe<ShepherdUpdateWebhookInput>;
|
|
14899
|
+
};
|
|
14900
|
+
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14901
|
+
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14902
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14903
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14904
|
+
success: Scalars['Boolean'];
|
|
14905
|
+
};
|
|
14906
|
+
export declare type ShepherdUpdateWebhookInput = {
|
|
14907
|
+
callbackURL?: Maybe<Scalars['URL']>;
|
|
14908
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14909
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14910
|
+
};
|
|
14279
14911
|
export declare type ShepherdUser = {
|
|
14280
14912
|
__typename?: 'ShepherdUser';
|
|
14281
14913
|
user?: Maybe<User>;
|
|
14282
14914
|
};
|
|
14915
|
+
export declare type ShepherdWebhookConnection = {
|
|
14916
|
+
__typename?: 'ShepherdWebhookConnection';
|
|
14917
|
+
edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
|
|
14918
|
+
};
|
|
14919
|
+
export declare type ShepherdWebhookEdge = {
|
|
14920
|
+
__typename?: 'ShepherdWebhookEdge';
|
|
14921
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14922
|
+
};
|
|
14923
|
+
export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
14924
|
+
__typename?: 'ShepherdWebhookSubscription';
|
|
14925
|
+
authToken: Scalars['String'];
|
|
14926
|
+
callbackURL: Scalars['String'];
|
|
14927
|
+
createdBy: Scalars['String'];
|
|
14928
|
+
createdOn: Scalars['DateTime'];
|
|
14929
|
+
id: Scalars['ID'];
|
|
14930
|
+
status: ShepherdSubscriptionStatus;
|
|
14931
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14932
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14933
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14934
|
+
};
|
|
14935
|
+
export declare enum ShepherdWebhookType {
|
|
14936
|
+
Custom = "CUSTOM",
|
|
14937
|
+
Slack = "SLACK"
|
|
14938
|
+
}
|
|
14283
14939
|
export declare type SoftwareBoard = {
|
|
14284
14940
|
__typename?: 'SoftwareBoard';
|
|
14285
14941
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -14552,6 +15208,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
14552
15208
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14553
15209
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
14554
15210
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
15211
|
+
updateSupportRequest?: Maybe<SupportRequest>;
|
|
14555
15212
|
};
|
|
14556
15213
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
14557
15214
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -14571,6 +15228,9 @@ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationR
|
|
|
14571
15228
|
sen?: Maybe<Scalars['String']>;
|
|
14572
15229
|
operation: SupportRequestNamedContactOperation;
|
|
14573
15230
|
};
|
|
15231
|
+
export declare type SupportRequestCatalogMutationApiUpdateSupportRequestArgs = {
|
|
15232
|
+
input: SupportRequestUpdateInput;
|
|
15233
|
+
};
|
|
14574
15234
|
export declare type SupportRequestCatalogQueryApi = {
|
|
14575
15235
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
14576
15236
|
me?: Maybe<SupportRequestPage>;
|
|
@@ -14610,11 +15270,19 @@ export declare type SupportRequestField = {
|
|
|
14610
15270
|
__typename?: 'SupportRequestField';
|
|
14611
15271
|
id: Scalars['String'];
|
|
14612
15272
|
label: Scalars['String'];
|
|
14613
|
-
value
|
|
15273
|
+
value?: Maybe<SupportRequestFieldValue>;
|
|
15274
|
+
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15275
|
+
editable?: Maybe<Scalars['Boolean']>;
|
|
14614
15276
|
};
|
|
15277
|
+
export declare enum SupportRequestFieldDataType {
|
|
15278
|
+
String = "STRING",
|
|
15279
|
+
Number = "NUMBER",
|
|
15280
|
+
Boolean = "BOOLEAN",
|
|
15281
|
+
Date = "DATE"
|
|
15282
|
+
}
|
|
14615
15283
|
export declare type SupportRequestFieldValue = {
|
|
14616
15284
|
__typename?: 'SupportRequestFieldValue';
|
|
14617
|
-
value
|
|
15285
|
+
value?: Maybe<Scalars['String']>;
|
|
14618
15286
|
};
|
|
14619
15287
|
export declare type SupportRequestHierarchyRequest = {
|
|
14620
15288
|
__typename?: 'SupportRequestHierarchyRequest';
|
|
@@ -14743,6 +15411,14 @@ export declare type SupportRequestTransitions = {
|
|
|
14743
15411
|
lastPage: Scalars['Boolean'];
|
|
14744
15412
|
values: Array<SupportRequestTransition>;
|
|
14745
15413
|
};
|
|
15414
|
+
export declare type SupportRequestUpdateFieldInput = {
|
|
15415
|
+
id: Scalars['String'];
|
|
15416
|
+
value: Scalars['String'];
|
|
15417
|
+
};
|
|
15418
|
+
export declare type SupportRequestUpdateInput = {
|
|
15419
|
+
requestKey: Scalars['ID'];
|
|
15420
|
+
experienceFields?: Maybe<Array<SupportRequestUpdateFieldInput>>;
|
|
15421
|
+
};
|
|
14746
15422
|
export declare type SupportRequestUser = {
|
|
14747
15423
|
__typename?: 'SupportRequestUser';
|
|
14748
15424
|
user?: Maybe<User>;
|
|
@@ -14761,10 +15437,7 @@ export declare type SupportRequestUsers = {
|
|
|
14761
15437
|
};
|
|
14762
15438
|
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
14763
15439
|
query?: Maybe<Scalars['String']>;
|
|
14764
|
-
|
|
14765
|
-
maxResults?: Maybe<Scalars['Int']>;
|
|
14766
|
-
includeActive?: Maybe<Scalars['Boolean']>;
|
|
14767
|
-
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
15440
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
14768
15441
|
};
|
|
14769
15442
|
export declare type SupportRequests = {
|
|
14770
15443
|
__typename?: 'SupportRequests';
|
|
@@ -15298,6 +15971,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
15298
15971
|
description?: Maybe<Scalars['String']>;
|
|
15299
15972
|
ownerId?: Maybe<Scalars['ID']>;
|
|
15300
15973
|
fields?: Maybe<Array<UpdateCompassFieldInput>>;
|
|
15974
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
15301
15975
|
};
|
|
15302
15976
|
export declare type UpdateCompassComponentLinkInput = {
|
|
15303
15977
|
componentId: Scalars['ID'];
|
|
@@ -15597,6 +16271,7 @@ export declare type UpdatePolarisInsightPayload = Payload & {
|
|
|
15597
16271
|
export declare type UpdatePolarisMatrixAxis = {
|
|
15598
16272
|
dimension: Scalars['String'];
|
|
15599
16273
|
field: Scalars['ID'];
|
|
16274
|
+
fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
|
|
15600
16275
|
};
|
|
15601
16276
|
export declare type UpdatePolarisMatrixConfig = {
|
|
15602
16277
|
axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;
|
|
@@ -15731,7 +16406,7 @@ export declare type UserGrant = {
|
|
|
15731
16406
|
oauthClientId: Scalars['ID'];
|
|
15732
16407
|
appId?: Maybe<Scalars['ID']>;
|
|
15733
16408
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
15734
|
-
scopes
|
|
16409
|
+
scopes?: Maybe<Array<Maybe<AppHostServiceScope>>>;
|
|
15735
16410
|
};
|
|
15736
16411
|
export declare type UserGrantAppDetails = {
|
|
15737
16412
|
__typename?: 'UserGrantAppDetails';
|
|
@@ -15808,4 +16483,8 @@ export declare type _DirectiveArgument = {
|
|
|
15808
16483
|
name: Scalars['String'];
|
|
15809
16484
|
value: Scalars['String'];
|
|
15810
16485
|
};
|
|
16486
|
+
export declare enum SourceBillingType {
|
|
16487
|
+
Hams = "HAMS",
|
|
16488
|
+
Ccp = "CCP"
|
|
16489
|
+
}
|
|
15811
16490
|
//# sourceMappingURL=graphql-types.d.ts.map
|