@forge/cli-shared 0.0.0-experimental-7c72fec → 0.0.0-experimental-edeb51b
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 +409 -3
- package/out/apps/template.d.ts +4 -2
- package/out/apps/template.d.ts.map +1 -1
- package/out/apps/template.js +33 -21
- 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 +1840 -414
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +124 -22
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/shared/index.d.ts +1 -1
- package/out/shared/index.d.ts.map +1 -1
- package/out/ui/text.d.ts +5 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -2
- package/package.json +7 -7
|
@@ -4,6 +4,12 @@ export declare type Exact<T extends {
|
|
|
4
4
|
}> = {
|
|
5
5
|
[K in keyof T]: T[K];
|
|
6
6
|
};
|
|
7
|
+
export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
8
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
9
|
+
};
|
|
10
|
+
export declare type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
11
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
12
|
+
};
|
|
7
13
|
export declare type Scalars = {
|
|
8
14
|
ID: string;
|
|
9
15
|
String: string;
|
|
@@ -178,6 +184,12 @@ export declare type ActivityConnection = {
|
|
|
178
184
|
edges?: Maybe<Array<Maybe<ActivityItemEdge>>>;
|
|
179
185
|
pageInfo: ActivityPageInfo;
|
|
180
186
|
};
|
|
187
|
+
export declare type ActivityContributor = {
|
|
188
|
+
__typename?: 'ActivityContributor';
|
|
189
|
+
profile?: Maybe<User>;
|
|
190
|
+
lastAccessedDate: Scalars['DateTime'];
|
|
191
|
+
count?: Maybe<Scalars['Int']>;
|
|
192
|
+
};
|
|
181
193
|
export declare type ActivityEdge = {
|
|
182
194
|
__typename?: 'ActivityEdge';
|
|
183
195
|
cursor: Scalars['String'];
|
|
@@ -186,8 +198,8 @@ export declare type ActivityEdge = {
|
|
|
186
198
|
export declare type ActivityEvent = {
|
|
187
199
|
__typename?: 'ActivityEvent';
|
|
188
200
|
id: Scalars['ID'];
|
|
189
|
-
timestamp
|
|
190
|
-
eventType
|
|
201
|
+
timestamp: Scalars['DateTime'];
|
|
202
|
+
eventType: Scalars['String'];
|
|
191
203
|
actor?: Maybe<User>;
|
|
192
204
|
extension?: Maybe<ActivitiesEventExtension>;
|
|
193
205
|
};
|
|
@@ -205,11 +217,11 @@ export declare enum ActivityEventType {
|
|
|
205
217
|
}
|
|
206
218
|
export declare type ActivityFilter = {
|
|
207
219
|
actors?: Maybe<Array<Scalars['ID']>>;
|
|
220
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
208
221
|
type?: Maybe<ActivitiesFilterType>;
|
|
209
222
|
arguments?: Maybe<ActivityFilterArgs>;
|
|
210
223
|
};
|
|
211
224
|
export declare type ActivityFilterArgs = {
|
|
212
|
-
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
213
225
|
products?: Maybe<Array<Scalars['String']>>;
|
|
214
226
|
eventTypes?: Maybe<Array<Scalars['String']>>;
|
|
215
227
|
objectTypes?: Maybe<Array<Scalars['String']>>;
|
|
@@ -226,20 +238,20 @@ export declare type ActivityItemEdge = {
|
|
|
226
238
|
export declare type ActivityNode = Node & {
|
|
227
239
|
__typename?: 'ActivityNode';
|
|
228
240
|
id: Scalars['ID'];
|
|
229
|
-
object
|
|
230
|
-
event
|
|
241
|
+
object: ActivityObject;
|
|
242
|
+
event: ActivityEvent;
|
|
231
243
|
};
|
|
232
244
|
export declare type ActivityObject = {
|
|
233
245
|
__typename?: 'ActivityObject';
|
|
234
246
|
id: Scalars['ID'];
|
|
235
|
-
rootContainerId
|
|
236
|
-
type
|
|
237
|
-
product
|
|
247
|
+
rootContainerId: Scalars['ID'];
|
|
248
|
+
type: Scalars['String'];
|
|
249
|
+
product: Scalars['String'];
|
|
238
250
|
subProduct?: Maybe<Scalars['String']>;
|
|
239
|
-
contributors?: Maybe<Array<
|
|
251
|
+
contributors?: Maybe<Array<ActivityContributor>>;
|
|
240
252
|
data?: Maybe<ActivityObjectData>;
|
|
241
253
|
};
|
|
242
|
-
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;
|
|
243
255
|
export declare enum ActivityObjectType {
|
|
244
256
|
Site = "SITE",
|
|
245
257
|
Project = "PROJECT",
|
|
@@ -305,7 +317,10 @@ export declare enum ApiGroup {
|
|
|
305
317
|
DevopsService = "DEVOPS_SERVICE",
|
|
306
318
|
DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
|
|
307
319
|
Teams = "TEAMS",
|
|
308
|
-
ContentPlatformApi = "CONTENT_PLATFORM_API"
|
|
320
|
+
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
321
|
+
Identity = "IDENTITY",
|
|
322
|
+
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
323
|
+
Help = "HELP"
|
|
309
324
|
}
|
|
310
325
|
export declare type App = {
|
|
311
326
|
__typename?: 'App';
|
|
@@ -489,7 +504,7 @@ export declare type AppInstallation = {
|
|
|
489
504
|
__typename?: 'AppInstallation';
|
|
490
505
|
id: Scalars['ID'];
|
|
491
506
|
installationContext: Scalars['ID'];
|
|
492
|
-
createdAt: Scalars['
|
|
507
|
+
createdAt: Scalars['DateTime'];
|
|
493
508
|
createdBy?: Maybe<User>;
|
|
494
509
|
version?: Maybe<AppVersion>;
|
|
495
510
|
app?: Maybe<App>;
|
|
@@ -538,6 +553,7 @@ export declare type AppInstallationInput = {
|
|
|
538
553
|
environmentKey: Scalars['String'];
|
|
539
554
|
async?: Maybe<Scalars['Boolean']>;
|
|
540
555
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
556
|
+
provisionRequestId?: Maybe<Scalars['ID']>;
|
|
541
557
|
};
|
|
542
558
|
export declare type AppInstallationLicense = {
|
|
543
559
|
__typename?: 'AppInstallationLicense';
|
|
@@ -789,6 +805,7 @@ export declare type AppUninstallationInput = {
|
|
|
789
805
|
environmentKey: Scalars['String'];
|
|
790
806
|
async?: Maybe<Scalars['Boolean']>;
|
|
791
807
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
808
|
+
sourceBillingType?: Maybe<SourceBillingType>;
|
|
792
809
|
};
|
|
793
810
|
export declare type AppUninstallationResponse = Payload & {
|
|
794
811
|
__typename?: 'AppUninstallationResponse';
|
|
@@ -845,6 +862,66 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
|
|
|
845
862
|
success: Scalars['Boolean'];
|
|
846
863
|
errors?: Maybe<Array<MutationError>>;
|
|
847
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
|
+
};
|
|
848
925
|
export declare type ArjConfiguration = {
|
|
849
926
|
__typename?: 'ArjConfiguration';
|
|
850
927
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -952,11 +1029,13 @@ export declare type AuxEffectsInvocationPayload = {
|
|
|
952
1029
|
effects: Array<Scalars['JSON']>;
|
|
953
1030
|
context: Scalars['JSON'];
|
|
954
1031
|
contextToken?: Maybe<Scalars['String']>;
|
|
1032
|
+
extensionPayload?: Maybe<Scalars['JSON']>;
|
|
955
1033
|
config?: Maybe<Scalars['JSON']>;
|
|
956
1034
|
};
|
|
957
1035
|
export declare type AuxEffectsResult = {
|
|
958
1036
|
__typename?: 'AuxEffectsResult';
|
|
959
1037
|
effects: Array<Scalars['JSON']>;
|
|
1038
|
+
contextToken?: Maybe<ForgeContextToken>;
|
|
960
1039
|
};
|
|
961
1040
|
export declare type AvailableEstimations = {
|
|
962
1041
|
__typename?: 'AvailableEstimations';
|
|
@@ -967,6 +1046,34 @@ export declare type AvatarInput = {
|
|
|
967
1046
|
webUrl?: Maybe<Scalars['String']>;
|
|
968
1047
|
description?: Maybe<Scalars['String']>;
|
|
969
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
|
+
};
|
|
970
1077
|
export declare type Backlog = {
|
|
971
1078
|
__typename?: 'Backlog';
|
|
972
1079
|
boardIssueListKey?: Maybe<Scalars['String']>;
|
|
@@ -993,7 +1100,9 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
993
1100
|
status?: Maybe<Scalars['String']>;
|
|
994
1101
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
995
1102
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
1103
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
996
1104
|
imageUri?: Maybe<Scalars['String']>;
|
|
1105
|
+
dependents?: Maybe<Array<Maybe<BoardFeatureView>>>;
|
|
997
1106
|
};
|
|
998
1107
|
export declare enum BitbucketPermission {
|
|
999
1108
|
Admin = "ADMIN"
|
|
@@ -1129,8 +1238,9 @@ export declare enum BoardFeatureToggleStatus {
|
|
|
1129
1238
|
Disabled = "DISABLED"
|
|
1130
1239
|
}
|
|
1131
1240
|
export declare type BoardFeatureView = BasicBoardFeatureView | EstimationBoardFeatureView;
|
|
1132
|
-
export declare type BoardScope = {
|
|
1241
|
+
export declare type BoardScope = Node & {
|
|
1133
1242
|
__typename?: 'BoardScope';
|
|
1243
|
+
id: Scalars['ID'];
|
|
1134
1244
|
board?: Maybe<SoftwareBoard>;
|
|
1135
1245
|
userSwimlaneStrategy?: Maybe<SwimlaneStrategy>;
|
|
1136
1246
|
backlog?: Maybe<Backlog>;
|
|
@@ -1147,6 +1257,7 @@ export declare type BoardScope = {
|
|
|
1147
1257
|
startSprintPrototype?: Maybe<Sprint>;
|
|
1148
1258
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1149
1259
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1260
|
+
name?: Maybe<Scalars['String']>;
|
|
1150
1261
|
};
|
|
1151
1262
|
export declare type BoardScopeSprintsArgs = {
|
|
1152
1263
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1165,6 +1276,16 @@ export declare type BoardScopeFilteredCardIdsArgs = {
|
|
|
1165
1276
|
issueIds: Array<Maybe<Scalars['ID']>>;
|
|
1166
1277
|
customFilterIds: Array<Maybe<Scalars['ID']>>;
|
|
1167
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
|
+
};
|
|
1168
1289
|
export declare enum BuiltinPolarisIdeaField {
|
|
1169
1290
|
Assignee = "ASSIGNEE",
|
|
1170
1291
|
Created = "CREATED",
|
|
@@ -1336,6 +1457,7 @@ export declare type CardStatus = {
|
|
|
1336
1457
|
export declare type CardType = {
|
|
1337
1458
|
__typename?: 'CardType';
|
|
1338
1459
|
id?: Maybe<Scalars['ID']>;
|
|
1460
|
+
externalId?: Maybe<Scalars['ID']>;
|
|
1339
1461
|
name?: Maybe<Scalars['String']>;
|
|
1340
1462
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1341
1463
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
@@ -1447,9 +1569,16 @@ export declare type CompassAlertEvent = CompassEvent & {
|
|
|
1447
1569
|
displayName: Scalars['String'];
|
|
1448
1570
|
lastUpdated: Scalars['DateTime'];
|
|
1449
1571
|
updateSequenceNumber: Scalars['Long'];
|
|
1450
|
-
alertId: Scalars['ID'];
|
|
1451
1572
|
description?: Maybe<Scalars['String']>;
|
|
1452
1573
|
url?: Maybe<Scalars['URL']>;
|
|
1574
|
+
alertProperties: CompassAlertEventProperties;
|
|
1575
|
+
};
|
|
1576
|
+
export declare type CompassAlertEventProperties = {
|
|
1577
|
+
__typename?: 'CompassAlertEventProperties';
|
|
1578
|
+
id: Scalars['ID'];
|
|
1579
|
+
};
|
|
1580
|
+
export declare type CompassAlertEventPropertiesInput = {
|
|
1581
|
+
id: Scalars['ID'];
|
|
1453
1582
|
};
|
|
1454
1583
|
export declare type CompassAnnouncement = {
|
|
1455
1584
|
__typename?: 'CompassAnnouncement';
|
|
@@ -1465,6 +1594,49 @@ export declare type CompassAnnouncementAcknowledgement = {
|
|
|
1465
1594
|
component?: Maybe<CompassComponent>;
|
|
1466
1595
|
hasAcknowledged?: Maybe<Scalars['Boolean']>;
|
|
1467
1596
|
};
|
|
1597
|
+
export declare type CompassBuildEvent = CompassEvent & {
|
|
1598
|
+
__typename?: 'CompassBuildEvent';
|
|
1599
|
+
eventType: CompassEventType;
|
|
1600
|
+
lastUpdated: Scalars['DateTime'];
|
|
1601
|
+
displayName: Scalars['String'];
|
|
1602
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1603
|
+
url?: Maybe<Scalars['URL']>;
|
|
1604
|
+
description?: Maybe<Scalars['String']>;
|
|
1605
|
+
buildProperties: CompassBuildEventProperties;
|
|
1606
|
+
};
|
|
1607
|
+
export declare type CompassBuildEventPipeline = {
|
|
1608
|
+
__typename?: 'CompassBuildEventPipeline';
|
|
1609
|
+
pipelineId: Scalars['String'];
|
|
1610
|
+
url: Scalars['String'];
|
|
1611
|
+
displayName: Scalars['String'];
|
|
1612
|
+
};
|
|
1613
|
+
export declare type CompassBuildEventPipelineInput = {
|
|
1614
|
+
pipelineId: Scalars['String'];
|
|
1615
|
+
url: Scalars['String'];
|
|
1616
|
+
displayName: Scalars['String'];
|
|
1617
|
+
};
|
|
1618
|
+
export declare type CompassBuildEventProperties = {
|
|
1619
|
+
__typename?: 'CompassBuildEventProperties';
|
|
1620
|
+
state: CompassBuildEventState;
|
|
1621
|
+
pipeline?: Maybe<CompassBuildEventPipeline>;
|
|
1622
|
+
startedAt: Scalars['DateTime'];
|
|
1623
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
1624
|
+
};
|
|
1625
|
+
export declare type CompassBuildEventPropertiesInput = {
|
|
1626
|
+
state: CompassBuildEventState;
|
|
1627
|
+
pipeline: CompassBuildEventPipelineInput;
|
|
1628
|
+
startedAt: Scalars['DateTime'];
|
|
1629
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
1630
|
+
};
|
|
1631
|
+
export declare enum CompassBuildEventState {
|
|
1632
|
+
InProgress = "IN_PROGRESS",
|
|
1633
|
+
Successful = "SUCCESSFUL",
|
|
1634
|
+
Cancelled = "CANCELLED",
|
|
1635
|
+
Failed = "FAILED",
|
|
1636
|
+
Error = "ERROR",
|
|
1637
|
+
TimedOut = "TIMED_OUT",
|
|
1638
|
+
Unknown = "UNKNOWN"
|
|
1639
|
+
}
|
|
1468
1640
|
export declare type CompassCatalogMutationApi = {
|
|
1469
1641
|
__typename?: 'CompassCatalogMutationApi';
|
|
1470
1642
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
@@ -1512,6 +1684,10 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1512
1684
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
1513
1685
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1514
1686
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1687
|
+
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1688
|
+
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
1689
|
+
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
1690
|
+
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
1515
1691
|
};
|
|
1516
1692
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1517
1693
|
cloudId: Scalars['ID'];
|
|
@@ -1658,6 +1834,18 @@ export declare type CompassCatalogMutationApiDeleteMetricSourceArgs = {
|
|
|
1658
1834
|
export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
1659
1835
|
input: CompassInsertMetricValueInput;
|
|
1660
1836
|
};
|
|
1837
|
+
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1838
|
+
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
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
|
+
};
|
|
1661
1849
|
export declare type CompassCatalogQueryApi = {
|
|
1662
1850
|
__typename?: 'CompassCatalogQueryApi';
|
|
1663
1851
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -1672,6 +1860,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1672
1860
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1673
1861
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1674
1862
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1863
|
+
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
1675
1864
|
};
|
|
1676
1865
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1677
1866
|
id: Scalars['ID'];
|
|
@@ -1719,6 +1908,9 @@ export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
1719
1908
|
eventType: CompassEventType;
|
|
1720
1909
|
externalEventSourceId: Scalars['ID'];
|
|
1721
1910
|
};
|
|
1911
|
+
export declare type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
1912
|
+
query: CompassCustomFieldDefinitionsQuery;
|
|
1913
|
+
};
|
|
1722
1914
|
export declare type CompassChangeMetadata = {
|
|
1723
1915
|
__typename?: 'CompassChangeMetadata';
|
|
1724
1916
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1748,6 +1940,7 @@ export declare type CompassComponent = Node & {
|
|
|
1748
1940
|
eventSources?: Maybe<Array<EventSource>>;
|
|
1749
1941
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1750
1942
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
1943
|
+
customFields?: Maybe<Array<CompassCustomField>>;
|
|
1751
1944
|
};
|
|
1752
1945
|
export declare type CompassComponentRelationshipsArgs = {
|
|
1753
1946
|
query?: Maybe<CompassRelationshipQuery>;
|
|
@@ -1797,11 +1990,11 @@ export declare enum CompassComponentType {
|
|
|
1797
1990
|
export declare type CompassCreateAlertEventInput = {
|
|
1798
1991
|
displayName: Scalars['String'];
|
|
1799
1992
|
lastUpdated: Scalars['DateTime'];
|
|
1800
|
-
alertId: Scalars['ID'];
|
|
1801
1993
|
updateSequenceNumber: Scalars['Long'];
|
|
1802
|
-
description
|
|
1803
|
-
url
|
|
1994
|
+
description: Scalars['String'];
|
|
1995
|
+
url: Scalars['URL'];
|
|
1804
1996
|
externalEventSourceId: Scalars['ID'];
|
|
1997
|
+
alertProperties: CompassAlertEventPropertiesInput;
|
|
1805
1998
|
};
|
|
1806
1999
|
export declare type CompassCreateAnnouncementInput = {
|
|
1807
2000
|
componentId: Scalars['ID'];
|
|
@@ -1815,27 +2008,67 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1815
2008
|
success: Scalars['Boolean'];
|
|
1816
2009
|
errors?: Maybe<Array<MutationError>>;
|
|
1817
2010
|
};
|
|
1818
|
-
export declare type
|
|
2011
|
+
export declare type CompassCreateBuildEventInput = {
|
|
1819
2012
|
displayName: Scalars['String'];
|
|
1820
2013
|
lastUpdated: Scalars['DateTime'];
|
|
1821
|
-
customEventId: Scalars['ID'];
|
|
1822
2014
|
updateSequenceNumber: Scalars['Long'];
|
|
2015
|
+
description: Scalars['String'];
|
|
2016
|
+
url: Scalars['URL'];
|
|
2017
|
+
externalEventSourceId: Scalars['ID'];
|
|
2018
|
+
buildProperties: CompassBuildEventPropertiesInput;
|
|
2019
|
+
};
|
|
2020
|
+
export declare type CompassCreateCustomBooleanFieldDefinitionInput = {
|
|
2021
|
+
cloudId: Scalars['ID'];
|
|
2022
|
+
name: Scalars['String'];
|
|
1823
2023
|
description?: Maybe<Scalars['String']>;
|
|
1824
|
-
|
|
1825
|
-
|
|
2024
|
+
componentTypes: Array<CompassComponentType>;
|
|
2025
|
+
};
|
|
2026
|
+
export declare type CompassCreateCustomEventInput = {
|
|
2027
|
+
displayName: Scalars['String'];
|
|
2028
|
+
lastUpdated: Scalars['DateTime'];
|
|
2029
|
+
updateSequenceNumber: Scalars['Long'];
|
|
2030
|
+
description: Scalars['String'];
|
|
2031
|
+
url: Scalars['URL'];
|
|
1826
2032
|
externalEventSourceId: Scalars['ID'];
|
|
2033
|
+
customEventProperties: CompassCustomEventPropertiesInput;
|
|
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>;
|
|
1827
2057
|
};
|
|
1828
2058
|
export declare type CompassCreateDeploymentEventInput = {
|
|
1829
|
-
deploymentSequenceNumber: Scalars['Long'];
|
|
1830
2059
|
updateSequenceNumber: Scalars['Long'];
|
|
1831
2060
|
displayName: Scalars['String'];
|
|
1832
2061
|
url: Scalars['URL'];
|
|
1833
2062
|
description: Scalars['String'];
|
|
1834
|
-
state: CompassDeploymentEventState;
|
|
1835
2063
|
lastUpdated: Scalars['DateTime'];
|
|
2064
|
+
externalEventSourceId: Scalars['ID'];
|
|
2065
|
+
deploymentProperties: CompassCreateDeploymentEventPropertiesInput;
|
|
2066
|
+
};
|
|
2067
|
+
export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
2068
|
+
sequenceNumber: Scalars['Long'];
|
|
2069
|
+
state: CompassDeploymentEventState;
|
|
1836
2070
|
pipeline: CompassDeploymentEventPipelineInput;
|
|
1837
2071
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
1838
|
-
externalEventSourceId: Scalars['ID'];
|
|
1839
2072
|
};
|
|
1840
2073
|
export declare type CompassCreateEventInput = {
|
|
1841
2074
|
cloudId: Scalars['ID'];
|
|
@@ -1849,32 +2082,37 @@ export declare type CompassCreateEventsPayload = Payload & {
|
|
|
1849
2082
|
export declare type CompassCreateFlagEventInput = {
|
|
1850
2083
|
displayName: Scalars['String'];
|
|
1851
2084
|
lastUpdated: Scalars['DateTime'];
|
|
1852
|
-
flagId: Scalars['ID'];
|
|
1853
2085
|
updateSequenceNumber: Scalars['Long'];
|
|
1854
|
-
description
|
|
1855
|
-
url
|
|
1856
|
-
status?: Maybe<Scalars['String']>;
|
|
2086
|
+
description: Scalars['String'];
|
|
2087
|
+
url: Scalars['URL'];
|
|
1857
2088
|
externalEventSourceId: Scalars['ID'];
|
|
2089
|
+
flagProperties: CompassCreateFlagEventPropertiesInput;
|
|
2090
|
+
};
|
|
2091
|
+
export declare type CompassCreateFlagEventPropertiesInput = {
|
|
2092
|
+
id: Scalars['ID'];
|
|
2093
|
+
status?: Maybe<Scalars['String']>;
|
|
1858
2094
|
};
|
|
1859
2095
|
export declare type CompassCreateIncidentEventInput = {
|
|
1860
2096
|
displayName: Scalars['String'];
|
|
1861
2097
|
lastUpdated: Scalars['DateTime'];
|
|
1862
|
-
incidentId: Scalars['ID'];
|
|
1863
2098
|
updateSequenceNumber: Scalars['Long'];
|
|
1864
|
-
description
|
|
1865
|
-
url
|
|
1866
|
-
state: CompassIncidentEventState;
|
|
2099
|
+
description: Scalars['String'];
|
|
2100
|
+
url: Scalars['URL'];
|
|
1867
2101
|
externalEventSourceId: Scalars['ID'];
|
|
2102
|
+
incidentProperties: CompassCreateIncidentEventPropertiesInput;
|
|
2103
|
+
};
|
|
2104
|
+
export declare type CompassCreateIncidentEventPropertiesInput = {
|
|
2105
|
+
id: Scalars['ID'];
|
|
2106
|
+
state: CompassIncidentEventState;
|
|
1868
2107
|
};
|
|
1869
2108
|
export declare type CompassCreateLifecycleEventInput = {
|
|
1870
2109
|
displayName: Scalars['String'];
|
|
1871
2110
|
lastUpdated: Scalars['DateTime'];
|
|
1872
|
-
lifecycleId: Scalars['ID'];
|
|
1873
2111
|
updateSequenceNumber: Scalars['Long'];
|
|
1874
|
-
description
|
|
1875
|
-
url
|
|
1876
|
-
stage: CompassLifecycleEventStage;
|
|
2112
|
+
description: Scalars['String'];
|
|
2113
|
+
url: Scalars['URL'];
|
|
1877
2114
|
externalEventSourceId: Scalars['ID'];
|
|
2115
|
+
lifecycleProperties: CompassLifecycleEventInputProperties;
|
|
1878
2116
|
};
|
|
1879
2117
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
1880
2118
|
cloudId: Scalars['ID'];
|
|
@@ -1926,22 +2164,108 @@ export declare enum CompassCriteriaNumberComparatorOptions {
|
|
|
1926
2164
|
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
1927
2165
|
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
1928
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
|
+
};
|
|
1929
2183
|
export declare type CompassCustomEvent = CompassEvent & {
|
|
1930
2184
|
__typename?: 'CompassCustomEvent';
|
|
1931
2185
|
eventType: CompassEventType;
|
|
1932
2186
|
displayName: Scalars['String'];
|
|
1933
2187
|
lastUpdated: Scalars['DateTime'];
|
|
1934
2188
|
updateSequenceNumber: Scalars['Long'];
|
|
1935
|
-
customEventId: Scalars['ID'];
|
|
1936
2189
|
description?: Maybe<Scalars['String']>;
|
|
1937
2190
|
url?: Maybe<Scalars['URL']>;
|
|
1938
|
-
|
|
2191
|
+
customEventProperties: CompassCustomEventProperties;
|
|
1939
2192
|
};
|
|
1940
2193
|
export declare enum CompassCustomEventIcon {
|
|
1941
2194
|
Info = "INFO",
|
|
1942
2195
|
Warning = "WARNING",
|
|
1943
2196
|
Checkpoint = "CHECKPOINT"
|
|
1944
2197
|
}
|
|
2198
|
+
export declare type CompassCustomEventProperties = {
|
|
2199
|
+
__typename?: 'CompassCustomEventProperties';
|
|
2200
|
+
id: Scalars['ID'];
|
|
2201
|
+
icon?: Maybe<CompassCustomEventIcon>;
|
|
2202
|
+
};
|
|
2203
|
+
export declare type CompassCustomEventPropertiesInput = {
|
|
2204
|
+
id: Scalars['ID'];
|
|
2205
|
+
icon: CompassCustomEventIcon;
|
|
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
|
+
};
|
|
1945
2269
|
export declare type CompassDeleteAnnouncementInput = {
|
|
1946
2270
|
cloudId: Scalars['ID'];
|
|
1947
2271
|
id: Scalars['ID'];
|
|
@@ -1952,6 +2276,15 @@ export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
|
1952
2276
|
success: Scalars['Boolean'];
|
|
1953
2277
|
errors?: Maybe<Array<MutationError>>;
|
|
1954
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
|
+
};
|
|
1955
2288
|
export declare type CompassDeleteMetricDefinitionInput = {
|
|
1956
2289
|
id: Scalars['ID'];
|
|
1957
2290
|
};
|
|
@@ -1995,6 +2328,7 @@ export declare type CompassDeploymentEvent = CompassEvent & {
|
|
|
1995
2328
|
state?: Maybe<CompassDeploymentEventState>;
|
|
1996
2329
|
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
1997
2330
|
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2331
|
+
deploymentProperties: CompassDeploymentEventProperties;
|
|
1998
2332
|
};
|
|
1999
2333
|
export declare type CompassDeploymentEventEnvironment = {
|
|
2000
2334
|
__typename?: 'CompassDeploymentEventEnvironment';
|
|
@@ -2025,6 +2359,13 @@ export declare type CompassDeploymentEventPipelineInput = {
|
|
|
2025
2359
|
url: Scalars['String'];
|
|
2026
2360
|
displayName: Scalars['String'];
|
|
2027
2361
|
};
|
|
2362
|
+
export declare type CompassDeploymentEventProperties = {
|
|
2363
|
+
__typename?: 'CompassDeploymentEventProperties';
|
|
2364
|
+
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
2365
|
+
state?: Maybe<CompassDeploymentEventState>;
|
|
2366
|
+
pipeline?: Maybe<CompassDeploymentEventPipeline>;
|
|
2367
|
+
environment?: Maybe<CompassDeploymentEventEnvironment>;
|
|
2368
|
+
};
|
|
2028
2369
|
export declare enum CompassDeploymentEventState {
|
|
2029
2370
|
Pending = "PENDING",
|
|
2030
2371
|
InProgress = "IN_PROGRESS",
|
|
@@ -2068,6 +2409,7 @@ export declare type CompassEventEdge = {
|
|
|
2068
2409
|
};
|
|
2069
2410
|
export declare type CompassEventInput = {
|
|
2070
2411
|
deployment?: Maybe<CompassCreateDeploymentEventInput>;
|
|
2412
|
+
build?: Maybe<CompassCreateBuildEventInput>;
|
|
2071
2413
|
incident?: Maybe<CompassCreateIncidentEventInput>;
|
|
2072
2414
|
flag?: Maybe<CompassCreateFlagEventInput>;
|
|
2073
2415
|
alert?: Maybe<CompassCreateAlertEventInput>;
|
|
@@ -2081,6 +2423,7 @@ export declare type CompassEventTimeParameters = {
|
|
|
2081
2423
|
};
|
|
2082
2424
|
export declare enum CompassEventType {
|
|
2083
2425
|
Deployment = "DEPLOYMENT",
|
|
2426
|
+
Build = "BUILD",
|
|
2084
2427
|
Incident = "INCIDENT",
|
|
2085
2428
|
Flag = "FLAG",
|
|
2086
2429
|
Alert = "ALERT",
|
|
@@ -2140,9 +2483,13 @@ export declare type CompassFlagEvent = CompassEvent & {
|
|
|
2140
2483
|
displayName: Scalars['String'];
|
|
2141
2484
|
lastUpdated: Scalars['DateTime'];
|
|
2142
2485
|
updateSequenceNumber: Scalars['Long'];
|
|
2143
|
-
flagId: Scalars['ID'];
|
|
2144
2486
|
description?: Maybe<Scalars['String']>;
|
|
2145
2487
|
url?: Maybe<Scalars['URL']>;
|
|
2488
|
+
flagProperties: CompassFlagEventProperties;
|
|
2489
|
+
};
|
|
2490
|
+
export declare type CompassFlagEventProperties = {
|
|
2491
|
+
__typename?: 'CompassFlagEventProperties';
|
|
2492
|
+
id: Scalars['ID'];
|
|
2146
2493
|
status?: Maybe<Scalars['String']>;
|
|
2147
2494
|
};
|
|
2148
2495
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
@@ -2202,9 +2549,13 @@ export declare type CompassIncidentEvent = CompassEvent & {
|
|
|
2202
2549
|
displayName: Scalars['String'];
|
|
2203
2550
|
lastUpdated: Scalars['DateTime'];
|
|
2204
2551
|
updateSequenceNumber: Scalars['Long'];
|
|
2205
|
-
incidentId: Scalars['ID'];
|
|
2206
2552
|
description?: Maybe<Scalars['String']>;
|
|
2207
2553
|
url?: Maybe<Scalars['URL']>;
|
|
2554
|
+
incidentProperties: CompassIncidentEventProperties;
|
|
2555
|
+
};
|
|
2556
|
+
export declare type CompassIncidentEventProperties = {
|
|
2557
|
+
__typename?: 'CompassIncidentEventProperties';
|
|
2558
|
+
id: Scalars['ID'];
|
|
2208
2559
|
state?: Maybe<CompassIncidentEventState>;
|
|
2209
2560
|
};
|
|
2210
2561
|
export declare enum CompassIncidentEventState {
|
|
@@ -2229,10 +2580,18 @@ export declare type CompassLifecycleEvent = CompassEvent & {
|
|
|
2229
2580
|
displayName: Scalars['String'];
|
|
2230
2581
|
lastUpdated: Scalars['DateTime'];
|
|
2231
2582
|
updateSequenceNumber: Scalars['Long'];
|
|
2232
|
-
lifecycleId: Scalars['ID'];
|
|
2233
|
-
stage?: Maybe<CompassLifecycleEventStage>;
|
|
2234
2583
|
description?: Maybe<Scalars['String']>;
|
|
2235
2584
|
url?: Maybe<Scalars['URL']>;
|
|
2585
|
+
lifecycleProperties: CompassLifecycleEventProperties;
|
|
2586
|
+
};
|
|
2587
|
+
export declare type CompassLifecycleEventInputProperties = {
|
|
2588
|
+
id: Scalars['ID'];
|
|
2589
|
+
stage: CompassLifecycleEventStage;
|
|
2590
|
+
};
|
|
2591
|
+
export declare type CompassLifecycleEventProperties = {
|
|
2592
|
+
__typename?: 'CompassLifecycleEventProperties';
|
|
2593
|
+
id: Scalars['ID'];
|
|
2594
|
+
stage?: Maybe<CompassLifecycleEventStage>;
|
|
2236
2595
|
};
|
|
2237
2596
|
export declare enum CompassLifecycleEventStage {
|
|
2238
2597
|
PreRelease = "PRE_RELEASE",
|
|
@@ -2554,6 +2913,15 @@ export declare type CompassStarredComponentQuery = {
|
|
|
2554
2913
|
after?: Maybe<Scalars['String']>;
|
|
2555
2914
|
};
|
|
2556
2915
|
export declare type CompassStarredComponentQueryResult = CompassStarredComponentConnection | QueryError;
|
|
2916
|
+
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
2917
|
+
cloudId: Scalars['ID'];
|
|
2918
|
+
forgeAppId: Scalars['ID'];
|
|
2919
|
+
};
|
|
2920
|
+
export declare type CompassSynchronizeLinkAssociationsPayload = Payload & {
|
|
2921
|
+
__typename?: 'CompassSynchronizeLinkAssociationsPayload';
|
|
2922
|
+
success: Scalars['Boolean'];
|
|
2923
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2924
|
+
};
|
|
2557
2925
|
export declare type CompassTeamCheckin = {
|
|
2558
2926
|
__typename?: 'CompassTeamCheckin';
|
|
2559
2927
|
teamId?: Maybe<Scalars['ID']>;
|
|
@@ -2597,6 +2965,35 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
2597
2965
|
success: Scalars['Boolean'];
|
|
2598
2966
|
errors?: Maybe<Array<MutationError>>;
|
|
2599
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
|
+
};
|
|
2600
2997
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
2601
2998
|
id: Scalars['ID'];
|
|
2602
2999
|
name?: Maybe<Scalars['String']>;
|
|
@@ -2698,22 +3095,14 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2698
3095
|
errors?: Maybe<Array<MutationError>>;
|
|
2699
3096
|
node?: Maybe<Scalars['Int']>;
|
|
2700
3097
|
};
|
|
2701
|
-
export declare type
|
|
2702
|
-
id?: Maybe<Scalars['ID']>;
|
|
2703
|
-
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2704
|
-
space?: Maybe<ConfluenceSpace>;
|
|
2705
|
-
status?: Maybe<ConfluenceContentStatus>;
|
|
2706
|
-
title?: Maybe<Scalars['String']>;
|
|
2707
|
-
type?: Maybe<ConfluenceContentType>;
|
|
2708
|
-
};
|
|
2709
|
-
export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
3098
|
+
export declare type ConfluenceBlogPost = {
|
|
2710
3099
|
__typename?: 'ConfluenceBlogPost';
|
|
2711
3100
|
blogPostId: Scalars['ID'];
|
|
2712
|
-
id
|
|
3101
|
+
id: Scalars['ID'];
|
|
2713
3102
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2714
3103
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2715
3104
|
space?: Maybe<ConfluenceSpace>;
|
|
2716
|
-
status?: Maybe<
|
|
3105
|
+
status?: Maybe<ConfluenceBlogPostStatus>;
|
|
2717
3106
|
title?: Maybe<Scalars['String']>;
|
|
2718
3107
|
type?: Maybe<ConfluenceContentType>;
|
|
2719
3108
|
};
|
|
@@ -2722,20 +3111,34 @@ export declare type ConfluenceBlogPostLinks = {
|
|
|
2722
3111
|
base?: Maybe<Scalars['String']>;
|
|
2723
3112
|
webUi?: Maybe<Scalars['String']>;
|
|
2724
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
|
+
}
|
|
2725
3122
|
export declare type ConfluenceComment = {
|
|
2726
3123
|
__typename?: 'ConfluenceComment';
|
|
2727
3124
|
author?: Maybe<ConfluenceUserInfo>;
|
|
2728
3125
|
commentId?: Maybe<Scalars['ID']>;
|
|
2729
|
-
container?: Maybe<
|
|
2730
|
-
id
|
|
3126
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3127
|
+
id: Scalars['ID'];
|
|
2731
3128
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
2732
3129
|
name?: Maybe<Scalars['String']>;
|
|
3130
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
2733
3131
|
};
|
|
3132
|
+
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage;
|
|
2734
3133
|
export declare type ConfluenceCommentLinks = {
|
|
2735
3134
|
__typename?: 'ConfluenceCommentLinks';
|
|
2736
3135
|
base?: Maybe<Scalars['String']>;
|
|
2737
3136
|
webUi?: Maybe<Scalars['String']>;
|
|
2738
3137
|
};
|
|
3138
|
+
export declare enum ConfluenceCommentStatus {
|
|
3139
|
+
Current = "CURRENT",
|
|
3140
|
+
Draft = "DRAFT"
|
|
3141
|
+
}
|
|
2739
3142
|
export declare type ConfluenceContentBody = {
|
|
2740
3143
|
__typename?: 'ConfluenceContentBody';
|
|
2741
3144
|
adf?: Maybe<Scalars['String']>;
|
|
@@ -2767,14 +3170,6 @@ export declare enum ConfluenceContentRepresentation {
|
|
|
2767
3170
|
View = "VIEW",
|
|
2768
3171
|
Wiki = "WIKI"
|
|
2769
3172
|
}
|
|
2770
|
-
export declare enum ConfluenceContentStatus {
|
|
2771
|
-
Archived = "ARCHIVED",
|
|
2772
|
-
Current = "CURRENT",
|
|
2773
|
-
Deleted = "DELETED",
|
|
2774
|
-
Draft = "DRAFT",
|
|
2775
|
-
Historical = "HISTORICAL",
|
|
2776
|
-
Trashed = "TRASHED"
|
|
2777
|
-
}
|
|
2778
3173
|
export declare type ConfluenceContentTitleEmoji = {
|
|
2779
3174
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
2780
3175
|
id?: Maybe<Scalars['String']>;
|
|
@@ -2789,7 +3184,7 @@ export declare enum ConfluenceContentType {
|
|
|
2789
3184
|
}
|
|
2790
3185
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
2791
3186
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2792
|
-
|
|
3187
|
+
spaceId: Scalars['ID'];
|
|
2793
3188
|
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2794
3189
|
title?: Maybe<Scalars['String']>;
|
|
2795
3190
|
};
|
|
@@ -2801,7 +3196,7 @@ export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
|
2801
3196
|
};
|
|
2802
3197
|
export declare type ConfluenceCreatePageInput = {
|
|
2803
3198
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2804
|
-
|
|
3199
|
+
spaceId: Scalars['ID'];
|
|
2805
3200
|
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2806
3201
|
title?: Maybe<Scalars['String']>;
|
|
2807
3202
|
};
|
|
@@ -2822,21 +3217,38 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2822
3217
|
errors?: Maybe<Array<MutationError>>;
|
|
2823
3218
|
success: Scalars['Boolean'];
|
|
2824
3219
|
};
|
|
2825
|
-
export declare type
|
|
2826
|
-
|
|
2827
|
-
|
|
3220
|
+
export declare type ConfluenceCreateUserPropertyInput = {
|
|
3221
|
+
key: Scalars['String'];
|
|
3222
|
+
userId: Scalars['String'];
|
|
3223
|
+
value: Scalars['String'];
|
|
2828
3224
|
};
|
|
2829
|
-
export declare type
|
|
2830
|
-
__typename?: '
|
|
3225
|
+
export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
3226
|
+
__typename?: 'ConfluenceCreateUserPropertyPayload';
|
|
3227
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
2831
3228
|
errors?: Maybe<Array<MutationError>>;
|
|
2832
3229
|
success: Scalars['Boolean'];
|
|
2833
3230
|
};
|
|
2834
|
-
export declare type
|
|
3231
|
+
export declare type ConfluenceDeleteDraftBlogPostInput = {
|
|
2835
3232
|
id: Scalars['ID'];
|
|
2836
|
-
status: ConfluenceMutationContentStatus;
|
|
2837
3233
|
};
|
|
2838
|
-
export declare type
|
|
2839
|
-
__typename?: '
|
|
3234
|
+
export declare type ConfluenceDeleteDraftBlogPostPayload = Payload & {
|
|
3235
|
+
__typename?: 'ConfluenceDeleteDraftBlogPostPayload';
|
|
3236
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3237
|
+
success: Scalars['Boolean'];
|
|
3238
|
+
};
|
|
3239
|
+
export declare type ConfluenceDeleteDraftPageInput = {
|
|
3240
|
+
id: Scalars['ID'];
|
|
3241
|
+
};
|
|
3242
|
+
export declare type ConfluenceDeleteDraftPagePayload = Payload & {
|
|
3243
|
+
__typename?: 'ConfluenceDeleteDraftPagePayload';
|
|
3244
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3245
|
+
success: Scalars['Boolean'];
|
|
3246
|
+
};
|
|
3247
|
+
export declare type ConfluenceDeleteUserPropertyInput = {
|
|
3248
|
+
id: Scalars['ID'];
|
|
3249
|
+
};
|
|
3250
|
+
export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
3251
|
+
__typename?: 'ConfluenceDeleteUserPropertyPayload';
|
|
2840
3252
|
errors?: Maybe<Array<MutationError>>;
|
|
2841
3253
|
success: Scalars['Boolean'];
|
|
2842
3254
|
};
|
|
@@ -2850,7 +3262,7 @@ export declare type ConfluenceInlineTask = {
|
|
|
2850
3262
|
createdOn?: Maybe<Scalars['String']>;
|
|
2851
3263
|
dueOn?: Maybe<Scalars['String']>;
|
|
2852
3264
|
globalId?: Maybe<Scalars['ID']>;
|
|
2853
|
-
id
|
|
3265
|
+
id: Scalars['ID'];
|
|
2854
3266
|
status?: Maybe<ConfluenceInlineTaskStatus>;
|
|
2855
3267
|
taskId?: Maybe<Scalars['ID']>;
|
|
2856
3268
|
updatedOn?: Maybe<Scalars['String']>;
|
|
@@ -2871,61 +3283,84 @@ export declare type ConfluenceMutationApi = {
|
|
|
2871
3283
|
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
2872
3284
|
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
2873
3285
|
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
2874
|
-
|
|
2875
|
-
|
|
3286
|
+
confluenceDeleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
3287
|
+
confluenceDeleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
2876
3288
|
confluencePublishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
2877
3289
|
confluencePublishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
2878
3290
|
confluencePurgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
2879
3291
|
confluencePurgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3292
|
+
confluenceTrashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3293
|
+
confluenceTrashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
2880
3294
|
confluenceUpdateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
2881
3295
|
confluenceUpdateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
2882
3296
|
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
2883
3297
|
confluenceUpdateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
2884
3298
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3299
|
+
confluenceCreateUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
3300
|
+
confluenceUpdateValueUserProperty?: Maybe<ConfluenceUpdateValueUserPropertyPayload>;
|
|
3301
|
+
confluenceDeleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
2885
3302
|
};
|
|
2886
3303
|
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
2887
|
-
|
|
3304
|
+
cloudId: Scalars['ID'];
|
|
3305
|
+
input: ConfluenceCreateBlogPostInput;
|
|
2888
3306
|
};
|
|
2889
3307
|
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
2890
3308
|
cloudId: Scalars['ID'];
|
|
2891
|
-
|
|
3309
|
+
input: ConfluenceCreatePageInput;
|
|
2892
3310
|
};
|
|
2893
3311
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
3312
|
+
cloudId: Scalars['ID'];
|
|
2894
3313
|
input: ConfluenceCreateSpaceInput;
|
|
2895
3314
|
};
|
|
2896
|
-
export declare type
|
|
2897
|
-
|
|
3315
|
+
export declare type ConfluenceMutationApiConfluenceDeleteDraftBlogPostArgs = {
|
|
3316
|
+
input: ConfluenceDeleteDraftBlogPostInput;
|
|
2898
3317
|
};
|
|
2899
|
-
export declare type
|
|
2900
|
-
|
|
3318
|
+
export declare type ConfluenceMutationApiConfluenceDeleteDraftPageArgs = {
|
|
3319
|
+
input: ConfluenceDeleteDraftPageInput;
|
|
2901
3320
|
};
|
|
2902
3321
|
export declare type ConfluenceMutationApiConfluencePublishBlogPostArgs = {
|
|
2903
|
-
|
|
3322
|
+
input: ConfluencePublishBlogPostInput;
|
|
2904
3323
|
};
|
|
2905
3324
|
export declare type ConfluenceMutationApiConfluencePublishPageArgs = {
|
|
2906
|
-
|
|
3325
|
+
input: ConfluencePublishPageInput;
|
|
2907
3326
|
};
|
|
2908
3327
|
export declare type ConfluenceMutationApiConfluencePurgeBlogPostArgs = {
|
|
2909
|
-
|
|
3328
|
+
input: ConfluencePurgeBlogPostInput;
|
|
2910
3329
|
};
|
|
2911
3330
|
export declare type ConfluenceMutationApiConfluencePurgePageArgs = {
|
|
2912
|
-
|
|
3331
|
+
input: ConfluencePurgePageInput;
|
|
3332
|
+
};
|
|
3333
|
+
export declare type ConfluenceMutationApiConfluenceTrashBlogPostArgs = {
|
|
3334
|
+
input: ConfluenceTrashBlogPostInput;
|
|
3335
|
+
};
|
|
3336
|
+
export declare type ConfluenceMutationApiConfluenceTrashPageArgs = {
|
|
3337
|
+
input: ConfluenceTrashPageInput;
|
|
2913
3338
|
};
|
|
2914
3339
|
export declare type ConfluenceMutationApiConfluenceUpdateCurrentBlogPostArgs = {
|
|
2915
|
-
|
|
3340
|
+
input: ConfluenceUpdateCurrentBlogPostInput;
|
|
2916
3341
|
};
|
|
2917
3342
|
export declare type ConfluenceMutationApiConfluenceUpdateCurrentPageArgs = {
|
|
2918
|
-
|
|
3343
|
+
input: ConfluenceUpdateCurrentPageInput;
|
|
2919
3344
|
};
|
|
2920
3345
|
export declare type ConfluenceMutationApiConfluenceUpdateDraftBlogPostArgs = {
|
|
2921
|
-
|
|
3346
|
+
input: ConfluenceUpdateDraftBlogPostInput;
|
|
2922
3347
|
};
|
|
2923
3348
|
export declare type ConfluenceMutationApiConfluenceUpdateDraftPageArgs = {
|
|
2924
|
-
|
|
3349
|
+
input: ConfluenceUpdateDraftPageInput;
|
|
2925
3350
|
};
|
|
2926
3351
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2927
3352
|
input: ConfluenceUpdateSpaceInput;
|
|
2928
3353
|
};
|
|
3354
|
+
export declare type ConfluenceMutationApiConfluenceCreateUserPropertyArgs = {
|
|
3355
|
+
cloudId: Scalars['String'];
|
|
3356
|
+
input: ConfluenceCreateUserPropertyInput;
|
|
3357
|
+
};
|
|
3358
|
+
export declare type ConfluenceMutationApiConfluenceUpdateValueUserPropertyArgs = {
|
|
3359
|
+
input: ConfluenceUpdateValueUserPropertyInput;
|
|
3360
|
+
};
|
|
3361
|
+
export declare type ConfluenceMutationApiConfluenceDeleteUserPropertyArgs = {
|
|
3362
|
+
input: ConfluenceDeleteUserPropertyInput;
|
|
3363
|
+
};
|
|
2929
3364
|
export declare enum ConfluenceMutationContentStatus {
|
|
2930
3365
|
Current = "CURRENT",
|
|
2931
3366
|
Draft = "DRAFT"
|
|
@@ -2961,14 +3396,14 @@ export declare enum ConfluenceOperationTarget {
|
|
|
2961
3396
|
Space = "SPACE",
|
|
2962
3397
|
UserProfile = "USER_PROFILE"
|
|
2963
3398
|
}
|
|
2964
|
-
export declare type ConfluencePage =
|
|
3399
|
+
export declare type ConfluencePage = {
|
|
2965
3400
|
__typename?: 'ConfluencePage';
|
|
2966
|
-
id
|
|
3401
|
+
id: Scalars['ID'];
|
|
2967
3402
|
links?: Maybe<ConfluencePageLinks>;
|
|
2968
3403
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2969
3404
|
pageId: Scalars['ID'];
|
|
2970
3405
|
space?: Maybe<ConfluenceSpace>;
|
|
2971
|
-
status?: Maybe<
|
|
3406
|
+
status?: Maybe<ConfluencePageStatus>;
|
|
2972
3407
|
title?: Maybe<Scalars['String']>;
|
|
2973
3408
|
type?: Maybe<ConfluenceContentType>;
|
|
2974
3409
|
};
|
|
@@ -2977,8 +3412,16 @@ export declare type ConfluencePageLinks = {
|
|
|
2977
3412
|
base?: Maybe<Scalars['String']>;
|
|
2978
3413
|
webUi?: Maybe<Scalars['String']>;
|
|
2979
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
|
+
}
|
|
2980
3423
|
export declare type ConfluencePublishBlogPostInput = {
|
|
2981
|
-
id: Scalars['
|
|
3424
|
+
id: Scalars['ID'];
|
|
2982
3425
|
publishTitle?: Maybe<Scalars['String']>;
|
|
2983
3426
|
};
|
|
2984
3427
|
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
@@ -2988,7 +3431,7 @@ export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
|
2988
3431
|
success: Scalars['Boolean'];
|
|
2989
3432
|
};
|
|
2990
3433
|
export declare type ConfluencePublishPageInput = {
|
|
2991
|
-
id: Scalars['
|
|
3434
|
+
id: Scalars['ID'];
|
|
2992
3435
|
publishTitle?: Maybe<Scalars['String']>;
|
|
2993
3436
|
};
|
|
2994
3437
|
export declare type ConfluencePublishPagePayload = Payload & {
|
|
@@ -3016,33 +3459,23 @@ export declare type ConfluencePurgePagePayload = Payload & {
|
|
|
3016
3459
|
export declare type ConfluenceQueryApi = {
|
|
3017
3460
|
__typename?: 'ConfluenceQueryApi';
|
|
3018
3461
|
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3019
|
-
confluenceBlogPostWithFilters?: Maybe<ConfluenceBlogPost>;
|
|
3020
3462
|
confluenceBlogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3021
|
-
confluenceBlogPostsWithFilters?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3022
3463
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
3023
3464
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3024
3465
|
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
3025
3466
|
confluencePage?: Maybe<ConfluencePage>;
|
|
3026
|
-
confluencePageWithFilters?: Maybe<ConfluencePage>;
|
|
3027
3467
|
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3028
|
-
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3029
3468
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
3030
3469
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3470
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3471
|
+
confluenceUserProperties?: Maybe<Array<Maybe<ConfluenceUserProperty>>>;
|
|
3031
3472
|
};
|
|
3032
3473
|
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3033
3474
|
id: Scalars['ID'];
|
|
3034
3475
|
};
|
|
3035
|
-
export declare type ConfluenceQueryApiConfluenceBlogPostWithFiltersArgs = {
|
|
3036
|
-
id: Scalars['ID'];
|
|
3037
|
-
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3038
|
-
};
|
|
3039
3476
|
export declare type ConfluenceQueryApiConfluenceBlogPostsArgs = {
|
|
3040
3477
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3041
3478
|
};
|
|
3042
|
-
export declare type ConfluenceQueryApiConfluenceBlogPostsWithFiltersArgs = {
|
|
3043
|
-
ids: Array<Maybe<Scalars['ID']>>;
|
|
3044
|
-
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3045
|
-
};
|
|
3046
3479
|
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
3047
3480
|
id: Scalars['ID'];
|
|
3048
3481
|
};
|
|
@@ -3055,36 +3488,35 @@ export declare type ConfluenceQueryApiConfluenceInlineTaskArgs = {
|
|
|
3055
3488
|
export declare type ConfluenceQueryApiConfluencePageArgs = {
|
|
3056
3489
|
id: Scalars['ID'];
|
|
3057
3490
|
};
|
|
3058
|
-
export declare type ConfluenceQueryApiConfluencePageWithFiltersArgs = {
|
|
3059
|
-
id: Scalars['ID'];
|
|
3060
|
-
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3061
|
-
};
|
|
3062
3491
|
export declare type ConfluenceQueryApiConfluencePagesArgs = {
|
|
3063
3492
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3064
3493
|
};
|
|
3065
|
-
export declare type ConfluenceQueryApiConfluencePagesWithFiltersArgs = {
|
|
3066
|
-
ids: Array<Maybe<Scalars['ID']>>;
|
|
3067
|
-
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3068
|
-
};
|
|
3069
3494
|
export declare type ConfluenceQueryApiConfluenceSpaceArgs = {
|
|
3070
3495
|
id: Scalars['ID'];
|
|
3071
3496
|
};
|
|
3072
3497
|
export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
3073
3498
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3074
3499
|
};
|
|
3500
|
+
export declare type ConfluenceQueryApiConfluenceUserPropertyArgs = {
|
|
3501
|
+
id: Scalars['ID'];
|
|
3502
|
+
};
|
|
3503
|
+
export declare type ConfluenceQueryApiConfluenceUserPropertiesArgs = {
|
|
3504
|
+
ids: Array<Scalars['ID']>;
|
|
3505
|
+
};
|
|
3075
3506
|
export declare type ConfluenceSpace = {
|
|
3076
3507
|
__typename?: 'ConfluenceSpace';
|
|
3508
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3509
|
+
createdDate?: Maybe<Scalars['String']>;
|
|
3077
3510
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
3078
|
-
|
|
3079
|
-
homepage?: Maybe<ConfluenceAbstractPage>;
|
|
3511
|
+
homepage?: Maybe<ConfluencePage>;
|
|
3080
3512
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
3081
|
-
id
|
|
3513
|
+
id: Scalars['ID'];
|
|
3082
3514
|
key?: Maybe<Scalars['String']>;
|
|
3083
3515
|
links?: Maybe<ConfluenceSpaceLinks>;
|
|
3084
3516
|
metadata?: Maybe<ConfluenceSpaceMetadata>;
|
|
3085
3517
|
name?: Maybe<Scalars['String']>;
|
|
3086
3518
|
operations?: Maybe<Array<Maybe<ConfluenceOperationCheck>>>;
|
|
3087
|
-
spaceId
|
|
3519
|
+
spaceId: Scalars['ID'];
|
|
3088
3520
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
3089
3521
|
type?: Maybe<ConfluenceSpaceType>;
|
|
3090
3522
|
};
|
|
@@ -3093,11 +3525,6 @@ export declare type ConfluenceSpaceDescription = {
|
|
|
3093
3525
|
plain?: Maybe<Scalars['String']>;
|
|
3094
3526
|
view?: Maybe<Scalars['String']>;
|
|
3095
3527
|
};
|
|
3096
|
-
export declare type ConfluenceSpaceHistory = {
|
|
3097
|
-
__typename?: 'ConfluenceSpaceHistory';
|
|
3098
|
-
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3099
|
-
createdDate?: Maybe<Scalars['String']>;
|
|
3100
|
-
};
|
|
3101
3528
|
export declare type ConfluenceSpaceIcon = {
|
|
3102
3529
|
__typename?: 'ConfluenceSpaceIcon';
|
|
3103
3530
|
height?: Maybe<Scalars['Int']>;
|
|
@@ -3127,6 +3554,22 @@ export declare enum ConfluenceSpaceType {
|
|
|
3127
3554
|
Global = "GLOBAL",
|
|
3128
3555
|
Personal = "PERSONAL"
|
|
3129
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
|
+
};
|
|
3130
3573
|
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3131
3574
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3132
3575
|
id: Scalars['ID'];
|
|
@@ -3181,11 +3624,30 @@ export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
|
3181
3624
|
errors?: Maybe<Array<MutationError>>;
|
|
3182
3625
|
success: Scalars['Boolean'];
|
|
3183
3626
|
};
|
|
3627
|
+
export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
3628
|
+
id: Scalars['ID'];
|
|
3629
|
+
value: Scalars['String'];
|
|
3630
|
+
};
|
|
3631
|
+
export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
3632
|
+
__typename?: 'ConfluenceUpdateValueUserPropertyPayload';
|
|
3633
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3634
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3635
|
+
success: Scalars['Boolean'];
|
|
3636
|
+
};
|
|
3184
3637
|
export declare type ConfluenceUserInfo = {
|
|
3185
3638
|
__typename?: 'ConfluenceUserInfo';
|
|
3186
3639
|
user?: Maybe<User>;
|
|
3187
3640
|
personalSpace?: Maybe<ConfluenceSpace>;
|
|
3188
3641
|
};
|
|
3642
|
+
export declare type ConfluenceUserProperty = {
|
|
3643
|
+
__typename?: 'ConfluenceUserProperty';
|
|
3644
|
+
createdDate: Scalars['String'];
|
|
3645
|
+
id: Scalars['ID'];
|
|
3646
|
+
key: Scalars['String'];
|
|
3647
|
+
lastModifiedDate: Scalars['String'];
|
|
3648
|
+
propertyId: Scalars['ID'];
|
|
3649
|
+
value: Scalars['String'];
|
|
3650
|
+
};
|
|
3189
3651
|
export declare type ConnectAppScope = {
|
|
3190
3652
|
__typename?: 'ConnectAppScope';
|
|
3191
3653
|
scopeId: Scalars['ID'];
|
|
@@ -3201,7 +3663,6 @@ export declare type ContainerEventObject = {
|
|
|
3201
3663
|
attributes: Scalars['JSON'];
|
|
3202
3664
|
};
|
|
3203
3665
|
export declare type ContentPlatformAnyContext = ContentPlatformContextProduct | ContentPlatformContextApp | ContentPlatformContextTheme;
|
|
3204
|
-
export declare type ContentPlatformAnyContextEntry = ContentPlatformContextProductEntry | ContentPlatformContextAppEntry | ContentPlatformContextThemeEntry;
|
|
3205
3666
|
export declare type ContentPlatformChunkBenefits = {
|
|
3206
3667
|
__typename?: 'ContentPlatformChunkBenefits';
|
|
3207
3668
|
title: Scalars['String'];
|
|
@@ -3242,16 +3703,6 @@ export declare type ContentPlatformContextApp = {
|
|
|
3242
3703
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
3243
3704
|
url?: Maybe<Scalars['String']>;
|
|
3244
3705
|
};
|
|
3245
|
-
export declare type ContentPlatformContextAppEntry = {
|
|
3246
|
-
__typename?: 'ContentPlatformContextAppEntry';
|
|
3247
|
-
contextId: Scalars['String'];
|
|
3248
|
-
title: Scalars['String'];
|
|
3249
|
-
preventProdPublishing?: Maybe<Scalars['Boolean']>;
|
|
3250
|
-
appName: Scalars['String'];
|
|
3251
|
-
parentProductContext: Array<ContentPlatformContextProductEntry>;
|
|
3252
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3253
|
-
url: Scalars['String'];
|
|
3254
|
-
};
|
|
3255
3706
|
export declare type ContentPlatformContextProduct = {
|
|
3256
3707
|
__typename?: 'ContentPlatformContextProduct';
|
|
3257
3708
|
contextId: Scalars['String'];
|
|
@@ -3291,15 +3742,6 @@ export declare type ContentPlatformContextTheme = {
|
|
|
3291
3742
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
3292
3743
|
url?: Maybe<Scalars['String']>;
|
|
3293
3744
|
};
|
|
3294
|
-
export declare type ContentPlatformContextThemeEntry = {
|
|
3295
|
-
__typename?: 'ContentPlatformContextThemeEntry';
|
|
3296
|
-
contextId: Scalars['String'];
|
|
3297
|
-
title: Scalars['String'];
|
|
3298
|
-
preventProdPublishing: Scalars['Boolean'];
|
|
3299
|
-
hubName: Scalars['String'];
|
|
3300
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3301
|
-
url: Scalars['String'];
|
|
3302
|
-
};
|
|
3303
3745
|
export declare type ContentPlatformImageAsset = {
|
|
3304
3746
|
__typename?: 'ContentPlatformImageAsset';
|
|
3305
3747
|
title: Scalars['String'];
|
|
@@ -3325,13 +3767,6 @@ export declare type ContentPlatformImageComponent = {
|
|
|
3325
3767
|
image: ContentPlatformImageAsset;
|
|
3326
3768
|
contextReference: Array<ContentPlatformAnyContext>;
|
|
3327
3769
|
};
|
|
3328
|
-
export declare type ContentPlatformImageComponentEntry = {
|
|
3329
|
-
__typename?: 'ContentPlatformImageComponentEntry';
|
|
3330
|
-
name: Scalars['String'];
|
|
3331
|
-
altTag: Scalars['String'];
|
|
3332
|
-
image: ContentPlatformImageAssetEntry;
|
|
3333
|
-
contextReference: Array<ContentPlatformAnyContextEntry>;
|
|
3334
|
-
};
|
|
3335
3770
|
export declare type ContentPlatformIntroToPractice = {
|
|
3336
3771
|
__typename?: 'ContentPlatformIntroToPractice';
|
|
3337
3772
|
title: Scalars['String'];
|
|
@@ -3390,35 +3825,6 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3390
3825
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3391
3826
|
getStarted?: Maybe<Scalars['JSON']>;
|
|
3392
3827
|
};
|
|
3393
|
-
export declare type ContentPlatformReleaseNoteEntry = {
|
|
3394
|
-
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
3395
|
-
releaseNoteId: Scalars['String'];
|
|
3396
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
3397
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
3398
|
-
title?: Maybe<Scalars['String']>;
|
|
3399
|
-
changeTargetSchedule?: Maybe<Scalars['String']>;
|
|
3400
|
-
announcementPlan?: Maybe<ContentPlatformTaxonomyAnnouncementPlanEntry>;
|
|
3401
|
-
changeType?: Maybe<ContentPlatformTypeOfChangeEntry>;
|
|
3402
|
-
changeStatus?: Maybe<ContentPlatformStatusOfChangeEntry>;
|
|
3403
|
-
relatedContexts?: Maybe<Array<ContentPlatformAnyContextEntry>>;
|
|
3404
|
-
affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
|
|
3405
|
-
usersNeedingInformed?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
|
|
3406
|
-
description?: Maybe<Scalars['JSON']>;
|
|
3407
|
-
featuredImage?: Maybe<ContentPlatformImageComponentEntry>;
|
|
3408
|
-
keyChanges?: Maybe<Scalars['JSON']>;
|
|
3409
|
-
reasonForChange?: Maybe<Scalars['JSON']>;
|
|
3410
|
-
prepareForChange?: Maybe<Scalars['JSON']>;
|
|
3411
|
-
supportingVisuals?: Maybe<Array<ContentPlatformImageComponentEntry>>;
|
|
3412
|
-
relatedContentLinks?: Maybe<Array<Scalars['String']>>;
|
|
3413
|
-
featureRolloutDate?: Maybe<Scalars['String']>;
|
|
3414
|
-
changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategoryEntry>;
|
|
3415
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
3416
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
3417
|
-
updatedAt: Scalars['String'];
|
|
3418
|
-
url: Scalars['String'];
|
|
3419
|
-
benefitsList: Scalars['JSON'];
|
|
3420
|
-
getStarted: Scalars['JSON'];
|
|
3421
|
-
};
|
|
3422
3828
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
3423
3829
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
3424
3830
|
contextId?: Maybe<Scalars['String']>;
|
|
@@ -3447,11 +3853,6 @@ export declare type ContentPlatformStatusOfChange = {
|
|
|
3447
3853
|
label: Scalars['String'];
|
|
3448
3854
|
description: Scalars['String'];
|
|
3449
3855
|
};
|
|
3450
|
-
export declare type ContentPlatformStatusOfChangeEntry = {
|
|
3451
|
-
__typename?: 'ContentPlatformStatusOfChangeEntry';
|
|
3452
|
-
label: Scalars['String'];
|
|
3453
|
-
description: Scalars['String'];
|
|
3454
|
-
};
|
|
3455
3856
|
export declare type ContentPlatformTaxonomyAnnouncementPlan = {
|
|
3456
3857
|
__typename?: 'ContentPlatformTaxonomyAnnouncementPlan';
|
|
3457
3858
|
title: Scalars['String'];
|
|
@@ -3467,31 +3868,16 @@ export declare type ContentPlatformTaxonomyChangeCategory = {
|
|
|
3467
3868
|
title: Scalars['String'];
|
|
3468
3869
|
description: Scalars['String'];
|
|
3469
3870
|
};
|
|
3470
|
-
export declare type ContentPlatformTaxonomyChangeCategoryEntry = {
|
|
3471
|
-
__typename?: 'ContentPlatformTaxonomyChangeCategoryEntry';
|
|
3472
|
-
title: Scalars['String'];
|
|
3473
|
-
description: Scalars['String'];
|
|
3474
|
-
};
|
|
3475
3871
|
export declare type ContentPlatformTaxonomyUserRole = {
|
|
3476
3872
|
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
3477
3873
|
title: Scalars['String'];
|
|
3478
3874
|
description: Scalars['String'];
|
|
3479
3875
|
};
|
|
3480
|
-
export declare type ContentPlatformTaxonomyUserRoleEntry = {
|
|
3481
|
-
__typename?: 'ContentPlatformTaxonomyUserRoleEntry';
|
|
3482
|
-
title: Scalars['String'];
|
|
3483
|
-
description: Scalars['String'];
|
|
3484
|
-
};
|
|
3485
3876
|
export declare type ContentPlatformTypeOfChange = {
|
|
3486
3877
|
__typename?: 'ContentPlatformTypeOfChange';
|
|
3487
3878
|
label: Scalars['String'];
|
|
3488
3879
|
icon: ContentPlatformImageAsset;
|
|
3489
3880
|
};
|
|
3490
|
-
export declare type ContentPlatformTypeOfChangeEntry = {
|
|
3491
|
-
__typename?: 'ContentPlatformTypeOfChangeEntry';
|
|
3492
|
-
label?: Maybe<Scalars['String']>;
|
|
3493
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3494
|
-
};
|
|
3495
3881
|
export declare type ContentPlatformWhatPractice = {
|
|
3496
3882
|
__typename?: 'ContentPlatformWhatPractice';
|
|
3497
3883
|
title: Scalars['String'];
|
|
@@ -3590,6 +3976,7 @@ export declare type CreateCompassComponentInput = {
|
|
|
3590
3976
|
type: CompassComponentType;
|
|
3591
3977
|
ownerId?: Maybe<Scalars['ID']>;
|
|
3592
3978
|
fields?: Maybe<Array<CreateCompassFieldInput>>;
|
|
3979
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
3593
3980
|
};
|
|
3594
3981
|
export declare type CreateCompassComponentLinkInput = {
|
|
3595
3982
|
componentId: Scalars['ID'];
|
|
@@ -3779,6 +4166,7 @@ export declare type CreateDevOpsServiceRelationshipPayload = Payload & {
|
|
|
3779
4166
|
serviceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
3780
4167
|
};
|
|
3781
4168
|
export declare type CreateEventSourceInput = {
|
|
4169
|
+
cloudId: Scalars['ID'];
|
|
3782
4170
|
externalEventSourceId: Scalars['ID'];
|
|
3783
4171
|
eventType: CompassEventType;
|
|
3784
4172
|
};
|
|
@@ -4234,8 +4622,10 @@ export declare type DeleteDevOpsServiceRelationshipPayload = Payload & {
|
|
|
4234
4622
|
errors?: Maybe<Array<MutationError>>;
|
|
4235
4623
|
};
|
|
4236
4624
|
export declare type DeleteEventSourceInput = {
|
|
4625
|
+
cloudId: Scalars['ID'];
|
|
4237
4626
|
externalEventSourceId: Scalars['ID'];
|
|
4238
4627
|
eventType: CompassEventType;
|
|
4628
|
+
deleteIfAttachedToComponents?: Maybe<Scalars['Boolean']>;
|
|
4239
4629
|
};
|
|
4240
4630
|
export declare type DeleteEventSourcePayload = Payload & {
|
|
4241
4631
|
__typename?: 'DeleteEventSourcePayload';
|
|
@@ -4378,6 +4768,7 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
4378
4768
|
export declare type DevOps = {
|
|
4379
4769
|
__typename?: 'DevOps';
|
|
4380
4770
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4771
|
+
ariGraph?: Maybe<AriGraph>;
|
|
4381
4772
|
};
|
|
4382
4773
|
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4383
4774
|
ids: Array<Scalars['ID']>;
|
|
@@ -4581,6 +4972,11 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
4581
4972
|
type: DevOpsMetricsRollupOption;
|
|
4582
4973
|
percentile?: Maybe<Scalars['Int']>;
|
|
4583
4974
|
};
|
|
4975
|
+
export declare type DevOpsMutation = {
|
|
4976
|
+
__typename?: 'DevOpsMutation';
|
|
4977
|
+
_empty?: Maybe<Scalars['String']>;
|
|
4978
|
+
ariGraph?: Maybe<AriGraphMutation>;
|
|
4979
|
+
};
|
|
4584
4980
|
export declare type DevOpsProvider = {
|
|
4585
4981
|
__typename?: 'DevOpsProvider';
|
|
4586
4982
|
name?: Maybe<Scalars['String']>;
|
|
@@ -4846,7 +5242,10 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
4846
5242
|
__typename?: 'DevOpsSummarisedDeployments';
|
|
4847
5243
|
entityId: Scalars['ID'];
|
|
4848
5244
|
count?: Maybe<Scalars['Int']>;
|
|
5245
|
+
mostRelevantCount?: Maybe<Scalars['Int']>;
|
|
4849
5246
|
deploymentState?: Maybe<DeploymentState>;
|
|
5247
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5248
|
+
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
4850
5249
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
4851
5250
|
};
|
|
4852
5251
|
export declare type DevOpsThirdPartyRepository = {
|
|
@@ -4856,23 +5255,19 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
4856
5255
|
name?: Maybe<Scalars['String']>;
|
|
4857
5256
|
avatar?: Maybe<DevOpsAvatar>;
|
|
4858
5257
|
};
|
|
4859
|
-
export declare type DevOpsTool = {
|
|
5258
|
+
export declare type DevOpsTool = Node & {
|
|
5259
|
+
__typename?: 'DevOpsTool';
|
|
4860
5260
|
id: Scalars['ID'];
|
|
4861
5261
|
name: Scalars['String'];
|
|
4862
5262
|
productKey: Scalars['String'];
|
|
4863
5263
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
id: Scalars['ID'];
|
|
4869
|
-
name: Scalars['String'];
|
|
4870
|
-
productKey: Scalars['String'];
|
|
4871
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4872
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5264
|
+
group: DevOpsToolGroup;
|
|
5265
|
+
supportsContainers: Scalars['Boolean'];
|
|
5266
|
+
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5267
|
+
integration?: Maybe<DevOpsToolIntegration>;
|
|
4873
5268
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
4874
5269
|
};
|
|
4875
|
-
export declare type
|
|
5270
|
+
export declare type DevOpsToolNamespacesArgs = {
|
|
4876
5271
|
query?: Maybe<Scalars['String']>;
|
|
4877
5272
|
first?: Maybe<Scalars['Int']>;
|
|
4878
5273
|
after?: Maybe<Scalars['String']>;
|
|
@@ -4881,11 +5276,20 @@ export declare type DevOpsToolAvatar = {
|
|
|
4881
5276
|
__typename?: 'DevOpsToolAvatar';
|
|
4882
5277
|
url: Scalars['URL'];
|
|
4883
5278
|
};
|
|
4884
|
-
export declare
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
5279
|
+
export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpecification & {
|
|
5280
|
+
__typename?: 'DevOpsToolBitbucketCreate';
|
|
5281
|
+
requestId: Scalars['String'];
|
|
5282
|
+
workspace: Scalars['String'];
|
|
5283
|
+
slug?: Maybe<Scalars['String']>;
|
|
5284
|
+
name: Scalars['String'];
|
|
5285
|
+
};
|
|
5286
|
+
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
5287
|
+
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5288
|
+
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5289
|
+
requestId: Scalars['String'];
|
|
5290
|
+
key: Scalars['String'];
|
|
5291
|
+
name: Scalars['String'];
|
|
5292
|
+
};
|
|
4889
5293
|
export declare type DevOpsToolConnection = {
|
|
4890
5294
|
__typename?: 'DevOpsToolConnection';
|
|
4891
5295
|
edges?: Maybe<Array<Maybe<DevOpsToolEdge>>>;
|
|
@@ -4907,31 +5311,89 @@ export declare type DevOpsToolContainer = Node & {
|
|
|
4907
5311
|
url: Scalars['String'];
|
|
4908
5312
|
underlyingId: Scalars['String'];
|
|
4909
5313
|
};
|
|
5314
|
+
export declare type DevOpsToolContainerCanBeCreated = {
|
|
5315
|
+
__typename?: 'DevOpsToolContainerCanBeCreated';
|
|
5316
|
+
containerCreationSpecification?: Maybe<DevOpsToolContainerCreationSpecification>;
|
|
5317
|
+
};
|
|
4910
5318
|
export declare type DevOpsToolContainerConnection = {
|
|
4911
5319
|
__typename?: 'DevOpsToolContainerConnection';
|
|
4912
5320
|
edges?: Maybe<Array<Maybe<DevOpsToolContainerEdge>>>;
|
|
4913
5321
|
nodes?: Maybe<Array<Maybe<DevOpsToolContainer>>>;
|
|
4914
5322
|
pageInfo: PageInfo;
|
|
4915
5323
|
};
|
|
5324
|
+
export declare type DevOpsToolContainerCreationSpecification = {
|
|
5325
|
+
requestId: Scalars['String'];
|
|
5326
|
+
};
|
|
4916
5327
|
export declare type DevOpsToolContainerEdge = {
|
|
4917
5328
|
__typename?: 'DevOpsToolContainerEdge';
|
|
4918
5329
|
cursor: Scalars['String'];
|
|
4919
5330
|
node?: Maybe<DevOpsToolContainer>;
|
|
4920
5331
|
};
|
|
4921
|
-
export declare
|
|
4922
|
-
|
|
4923
|
-
|
|
4924
|
-
|
|
4925
|
-
|
|
5332
|
+
export declare type DevOpsToolContainerIntegration = {
|
|
5333
|
+
containerType: Scalars['String'];
|
|
5334
|
+
};
|
|
5335
|
+
export declare type DevOpsToolContainerIntegrationApp = DevOpsToolContainerIntegration & {
|
|
5336
|
+
__typename?: 'DevOpsToolContainerIntegrationApp';
|
|
5337
|
+
containerType: Scalars['String'];
|
|
5338
|
+
appKey: Scalars['String'];
|
|
5339
|
+
installed: Scalars['Boolean'];
|
|
5340
|
+
oauthUrl?: Maybe<Scalars['String']>;
|
|
5341
|
+
};
|
|
5342
|
+
export declare type DevOpsToolContainerIntegrationProduct = DevOpsToolContainerIntegration & {
|
|
5343
|
+
__typename?: 'DevOpsToolContainerIntegrationProduct';
|
|
5344
|
+
containerType: Scalars['String'];
|
|
5345
|
+
productKey: Scalars['String'];
|
|
5346
|
+
available: Scalars['Boolean'];
|
|
5347
|
+
};
|
|
5348
|
+
export declare type DevOpsToolContainerKeyCannotBeGenerated = {
|
|
5349
|
+
__typename?: 'DevOpsToolContainerKeyCannotBeGenerated';
|
|
5350
|
+
name?: Maybe<Scalars['String']>;
|
|
5351
|
+
};
|
|
5352
|
+
export declare type DevOpsToolContainerKeyConflict = {
|
|
5353
|
+
__typename?: 'DevOpsToolContainerKeyConflict';
|
|
5354
|
+
name?: Maybe<Scalars['String']>;
|
|
5355
|
+
key?: Maybe<Scalars['String']>;
|
|
5356
|
+
};
|
|
5357
|
+
export declare type DevOpsToolContainerNameConflict = {
|
|
5358
|
+
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5359
|
+
name?: Maybe<Scalars['String']>;
|
|
5360
|
+
};
|
|
4926
5361
|
export declare type DevOpsToolEdge = {
|
|
4927
5362
|
__typename?: 'DevOpsToolEdge';
|
|
4928
5363
|
cursor: Scalars['String'];
|
|
4929
5364
|
node?: Maybe<DevOpsTool>;
|
|
4930
5365
|
};
|
|
4931
|
-
export declare type
|
|
4932
|
-
__typename?: '
|
|
4933
|
-
|
|
4934
|
-
|
|
5366
|
+
export declare type DevOpsToolGitHubCreate = DevOpsToolContainerCreationSpecification & {
|
|
5367
|
+
__typename?: 'DevOpsToolGitHubCreate';
|
|
5368
|
+
requestId: Scalars['String'];
|
|
5369
|
+
organizationName: Scalars['String'];
|
|
5370
|
+
repositoryName: Scalars['String'];
|
|
5371
|
+
};
|
|
5372
|
+
export declare type DevOpsToolGitLabCreate = DevOpsToolContainerCreationSpecification & {
|
|
5373
|
+
__typename?: 'DevOpsToolGitLabCreate';
|
|
5374
|
+
requestId: Scalars['String'];
|
|
5375
|
+
organizationName: Scalars['String'];
|
|
5376
|
+
repositoryName: Scalars['String'];
|
|
5377
|
+
};
|
|
5378
|
+
export declare type DevOpsToolGroup = {
|
|
5379
|
+
__typename?: 'DevOpsToolGroup';
|
|
5380
|
+
groupId: Scalars['String'];
|
|
5381
|
+
groupName: Scalars['String'];
|
|
5382
|
+
};
|
|
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']>;
|
|
4935
5397
|
};
|
|
4936
5398
|
export declare type DevOpsToolNamespace = Node & {
|
|
4937
5399
|
__typename?: 'DevOpsToolNamespace';
|
|
@@ -4946,6 +5408,7 @@ export declare type DevOpsToolNamespaceContainersArgs = {
|
|
|
4946
5408
|
query?: Maybe<Scalars['String']>;
|
|
4947
5409
|
first?: Maybe<Scalars['Int']>;
|
|
4948
5410
|
after?: Maybe<Scalars['String']>;
|
|
5411
|
+
projectAri?: Maybe<Scalars['String']>;
|
|
4949
5412
|
};
|
|
4950
5413
|
export declare type DevOpsToolNamespaceConnection = {
|
|
4951
5414
|
__typename?: 'DevOpsToolNamespaceConnection';
|
|
@@ -4969,19 +5432,14 @@ export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
|
4969
5432
|
OncallTab = "ONCALL_TAB",
|
|
4970
5433
|
PagesTab = "PAGES_TAB"
|
|
4971
5434
|
}
|
|
4972
|
-
export declare type
|
|
4973
|
-
__typename?: '
|
|
4974
|
-
|
|
4975
|
-
type: DevOpsToolContainerType;
|
|
4976
|
-
};
|
|
4977
|
-
export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
4978
|
-
__typename?: 'DevOpsToolUnavailable';
|
|
4979
|
-
id: Scalars['ID'];
|
|
5435
|
+
export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecification & {
|
|
5436
|
+
__typename?: 'DevOpsToolOpsgenieCreate';
|
|
5437
|
+
requestId: Scalars['String'];
|
|
4980
5438
|
name: Scalars['String'];
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
5439
|
+
};
|
|
5440
|
+
export declare type DevOpsToolUnknownTool = {
|
|
5441
|
+
__typename?: 'DevOpsToolUnknownTool';
|
|
5442
|
+
toolId?: Maybe<Scalars['String']>;
|
|
4985
5443
|
};
|
|
4986
5444
|
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenInput = {
|
|
4987
5445
|
cloudId: Scalars['ID'];
|
|
@@ -5001,11 +5459,16 @@ export declare type DevOpsTools = {
|
|
|
5001
5459
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
5002
5460
|
container?: Maybe<DevOpsToolContainer>;
|
|
5003
5461
|
navbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
5462
|
+
canContainerBeCreated?: Maybe<DevOpsToolCanContainerBeCreated>;
|
|
5004
5463
|
};
|
|
5005
5464
|
export declare type DevOpsToolsToolsArgs = {
|
|
5006
5465
|
cloudId: Scalars['ID'];
|
|
5007
5466
|
first?: Maybe<Scalars['Int']>;
|
|
5008
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']>;
|
|
5009
5472
|
};
|
|
5010
5473
|
export declare type DevOpsToolsToolArgs = {
|
|
5011
5474
|
id: Scalars['ID'];
|
|
@@ -5020,6 +5483,12 @@ export declare type DevOpsToolsNavbarConnectionStateArgs = {
|
|
|
5020
5483
|
cloudId: Scalars['ID'];
|
|
5021
5484
|
projectId: Scalars['ID'];
|
|
5022
5485
|
};
|
|
5486
|
+
export declare type DevOpsToolsCanContainerBeCreatedArgs = {
|
|
5487
|
+
cloudId: Scalars['ID'];
|
|
5488
|
+
toolId: Scalars['String'];
|
|
5489
|
+
namespaceId: Scalars['String'];
|
|
5490
|
+
containerName: Scalars['String'];
|
|
5491
|
+
};
|
|
5023
5492
|
export declare type DevStatus = {
|
|
5024
5493
|
__typename?: 'DevStatus';
|
|
5025
5494
|
activity: DevStatusActivity;
|
|
@@ -5121,6 +5590,7 @@ export declare type EstimationBoardFeatureView = Node & {
|
|
|
5121
5590
|
status?: Maybe<Scalars['String']>;
|
|
5122
5591
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
5123
5592
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
5593
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
5124
5594
|
imageUri?: Maybe<Scalars['String']>;
|
|
5125
5595
|
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
5126
5596
|
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
@@ -5167,6 +5637,7 @@ export declare type Extension = {
|
|
|
5167
5637
|
appOwner?: Maybe<User>;
|
|
5168
5638
|
appVersion?: Maybe<Scalars['String']>;
|
|
5169
5639
|
properties: Scalars['JSON'];
|
|
5640
|
+
migrationKey?: Maybe<Scalars['String']>;
|
|
5170
5641
|
license?: Maybe<AppInstallationLicense>;
|
|
5171
5642
|
egress?: Maybe<Array<AppNetworkEgressPermissionExtension>>;
|
|
5172
5643
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
|
|
@@ -5214,6 +5685,11 @@ export declare type FilterQuery = {
|
|
|
5214
5685
|
sanitisedJql: Scalars['String'];
|
|
5215
5686
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
5216
5687
|
};
|
|
5688
|
+
export declare type ForgeContextToken = {
|
|
5689
|
+
__typename?: 'ForgeContextToken';
|
|
5690
|
+
jwt: Scalars['String'];
|
|
5691
|
+
expiresAt: Scalars['String'];
|
|
5692
|
+
};
|
|
5217
5693
|
export declare type ForgeMetricsData = {
|
|
5218
5694
|
name: Scalars['String'];
|
|
5219
5695
|
type: ForgeMetricsDataType;
|
|
@@ -5297,6 +5773,7 @@ export declare type ForgeMetricsQueryErrorsArgs = {
|
|
|
5297
5773
|
};
|
|
5298
5774
|
export declare type ForgeMetricsQueryFilters = {
|
|
5299
5775
|
environment?: Maybe<Scalars['ID']>;
|
|
5776
|
+
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
5300
5777
|
interval: ForgeMetricsIntervalInput;
|
|
5301
5778
|
};
|
|
5302
5779
|
export declare type ForgeMetricsQueryInput = {
|
|
@@ -5383,8 +5860,157 @@ export declare enum GrantCheckProduct {
|
|
|
5383
5860
|
Jira = "JIRA",
|
|
5384
5861
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
5385
5862
|
Confluence = "CONFLUENCE",
|
|
5386
|
-
Compass = "COMPASS"
|
|
5863
|
+
Compass = "COMPASS",
|
|
5864
|
+
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5387
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
|
+
};
|
|
5388
6014
|
export declare type HostedResourcePreSignedUrl = {
|
|
5389
6015
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5390
6016
|
uploadUrl: Scalars['String'];
|
|
@@ -5454,6 +6080,7 @@ export declare type InvokeExtensionResponse = Payload & {
|
|
|
5454
6080
|
errors?: Maybe<Array<MutationError>>;
|
|
5455
6081
|
response?: Maybe<InvocationResponsePayload>;
|
|
5456
6082
|
externalAuth?: Maybe<Array<Maybe<ExternalAuthProvider>>>;
|
|
6083
|
+
contextToken?: Maybe<ForgeContextToken>;
|
|
5457
6084
|
};
|
|
5458
6085
|
export declare type InvokePolarisObjectInput = {
|
|
5459
6086
|
project: Scalars['ID'];
|
|
@@ -5524,6 +6151,7 @@ export declare enum IssueDevOpsCommitChangeType {
|
|
|
5524
6151
|
Copied = "COPIED",
|
|
5525
6152
|
Moved = "MOVED",
|
|
5526
6153
|
Modify = "MODIFY",
|
|
6154
|
+
Modified = "MODIFIED",
|
|
5527
6155
|
Unknown = "UNKNOWN"
|
|
5528
6156
|
}
|
|
5529
6157
|
export declare type IssueDevOpsCommitDetails = {
|
|
@@ -5702,7 +6330,8 @@ export declare type IssueDevOpsPullRequestReviewer = {
|
|
|
5702
6330
|
export declare enum IssueDevOpsPullRequestStatus {
|
|
5703
6331
|
Open = "OPEN",
|
|
5704
6332
|
Merged = "MERGED",
|
|
5705
|
-
Declined = "DECLINED"
|
|
6333
|
+
Declined = "DECLINED",
|
|
6334
|
+
Unknown = "UNKNOWN"
|
|
5706
6335
|
}
|
|
5707
6336
|
export declare type IssueDevOpsRemoteLink = {
|
|
5708
6337
|
__typename?: 'IssueDevOpsRemoteLink';
|
|
@@ -5788,6 +6417,16 @@ export declare type JiraAdf = {
|
|
|
5788
6417
|
__typename?: 'JiraADF';
|
|
5789
6418
|
json?: Maybe<Scalars['JSON']>;
|
|
5790
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
|
+
};
|
|
5791
6430
|
export declare type JiraAffectedService = {
|
|
5792
6431
|
__typename?: 'JiraAffectedService';
|
|
5793
6432
|
serviceId?: Maybe<Scalars['String']>;
|
|
@@ -6002,6 +6641,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
6002
6641
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6003
6642
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
6004
6643
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
6644
|
+
isInsightAvailable?: Maybe<Scalars['Boolean']>;
|
|
6005
6645
|
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
6006
6646
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6007
6647
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -6310,6 +6950,7 @@ export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfi
|
|
|
6310
6950
|
};
|
|
6311
6951
|
export declare type JiraComment = {
|
|
6312
6952
|
commentId: Scalars['ID'];
|
|
6953
|
+
issue?: Maybe<JiraIssue>;
|
|
6313
6954
|
webUrl?: Maybe<Scalars['URL']>;
|
|
6314
6955
|
author?: Maybe<User>;
|
|
6315
6956
|
updateAuthor?: Maybe<User>;
|
|
@@ -6318,6 +6959,10 @@ export declare type JiraComment = {
|
|
|
6318
6959
|
updated?: Maybe<Scalars['DateTime']>;
|
|
6319
6960
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
6320
6961
|
};
|
|
6962
|
+
export declare type JiraCommentByIdInput = {
|
|
6963
|
+
issueId: Scalars['ID'];
|
|
6964
|
+
id: Scalars['ID'];
|
|
6965
|
+
};
|
|
6321
6966
|
export declare type JiraCommentConnection = {
|
|
6322
6967
|
__typename?: 'JiraCommentConnection';
|
|
6323
6968
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -6461,6 +7106,16 @@ export declare type JiraConnectTextField = Node & JiraIssueField & JiraIssueFiel
|
|
|
6461
7106
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6462
7107
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6463
7108
|
};
|
|
7109
|
+
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
7110
|
+
__typename?: 'JiraCustomFilter';
|
|
7111
|
+
id: Scalars['ID'];
|
|
7112
|
+
filterId: Scalars['String'];
|
|
7113
|
+
jql: Scalars['String'];
|
|
7114
|
+
owner?: Maybe<User>;
|
|
7115
|
+
name: Scalars['String'];
|
|
7116
|
+
description?: Maybe<Scalars['String']>;
|
|
7117
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
7118
|
+
};
|
|
6464
7119
|
export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6465
7120
|
__typename?: 'JiraDatePickerField';
|
|
6466
7121
|
id: Scalars['ID'];
|
|
@@ -6490,11 +7145,34 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
6490
7145
|
id: Scalars['ID'];
|
|
6491
7146
|
name: Scalars['String'];
|
|
6492
7147
|
};
|
|
6493
|
-
export declare type
|
|
6494
|
-
__typename?: '
|
|
6495
|
-
|
|
6496
|
-
|
|
6497
|
-
|
|
7148
|
+
export declare type JiraDevOpsBranchDetails = {
|
|
7149
|
+
__typename?: 'JiraDevOpsBranchDetails';
|
|
7150
|
+
providerBranchId?: Maybe<Scalars['String']>;
|
|
7151
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
7152
|
+
name?: Maybe<Scalars['String']>;
|
|
7153
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
7154
|
+
};
|
|
7155
|
+
export declare type JiraDevOpsCommitDetails = {
|
|
7156
|
+
__typename?: 'JiraDevOpsCommitDetails';
|
|
7157
|
+
providerCommitId?: Maybe<Scalars['String']>;
|
|
7158
|
+
displayCommitId?: Maybe<Scalars['String']>;
|
|
7159
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
7160
|
+
name?: Maybe<Scalars['String']>;
|
|
7161
|
+
created?: Maybe<Scalars['DateTime']>;
|
|
7162
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
7163
|
+
isMergeCommit?: Maybe<Scalars['Boolean']>;
|
|
7164
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
7165
|
+
};
|
|
7166
|
+
export declare type JiraDevOpsEntityAuthor = {
|
|
7167
|
+
__typename?: 'JiraDevOpsEntityAuthor';
|
|
7168
|
+
avatar?: Maybe<JiraAvatar>;
|
|
7169
|
+
name?: Maybe<Scalars['String']>;
|
|
7170
|
+
};
|
|
7171
|
+
export declare type JiraDevOpsIssuePanel = {
|
|
7172
|
+
__typename?: 'JiraDevOpsIssuePanel';
|
|
7173
|
+
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
7174
|
+
devOpsIssuePanelBanner?: Maybe<JiraDevOpsIssuePanelBannerType>;
|
|
7175
|
+
devSummaryResult?: Maybe<JiraIssueDevSummaryResult>;
|
|
6498
7176
|
hasBranchCapabilities?: Maybe<Scalars['Boolean']>;
|
|
6499
7177
|
};
|
|
6500
7178
|
export declare enum JiraDevOpsIssuePanelBannerType {
|
|
@@ -6516,6 +7194,17 @@ export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateA
|
|
|
6516
7194
|
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
6517
7195
|
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
6518
7196
|
};
|
|
7197
|
+
export declare type JiraDevOpsPullRequestDetails = {
|
|
7198
|
+
__typename?: 'JiraDevOpsPullRequestDetails';
|
|
7199
|
+
providerPullRequestId?: Maybe<Scalars['String']>;
|
|
7200
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
7201
|
+
name?: Maybe<Scalars['String']>;
|
|
7202
|
+
branchName?: Maybe<Scalars['String']>;
|
|
7203
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
7204
|
+
status?: Maybe<JiraPullRequestState>;
|
|
7205
|
+
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
7206
|
+
reviewers?: Maybe<Array<JiraPullRequestReviewer>>;
|
|
7207
|
+
};
|
|
6519
7208
|
export declare type JiraDevOpsQuery = {
|
|
6520
7209
|
__typename?: 'JiraDevOpsQuery';
|
|
6521
7210
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
@@ -6599,14 +7288,24 @@ export declare type JiraFieldNonEditableReason = {
|
|
|
6599
7288
|
__typename?: 'JiraFieldNonEditableReason';
|
|
6600
7289
|
message?: Maybe<Scalars['String']>;
|
|
6601
7290
|
};
|
|
6602
|
-
export declare type JiraFilter =
|
|
6603
|
-
__typename?: 'JiraFilter';
|
|
7291
|
+
export declare type JiraFilter = {
|
|
6604
7292
|
id: Scalars['ID'];
|
|
6605
7293
|
filterId: Scalars['String'];
|
|
6606
7294
|
jql: Scalars['String'];
|
|
6607
7295
|
name: Scalars['String'];
|
|
7296
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
6608
7297
|
};
|
|
6609
|
-
export declare type
|
|
7298
|
+
export declare type JiraFilterConnection = {
|
|
7299
|
+
__typename?: 'JiraFilterConnection';
|
|
7300
|
+
pageInfo: PageInfo;
|
|
7301
|
+
edges?: Maybe<Array<Maybe<JiraFilterEdge>>>;
|
|
7302
|
+
};
|
|
7303
|
+
export declare type JiraFilterEdge = {
|
|
7304
|
+
__typename?: 'JiraFilterEdge';
|
|
7305
|
+
node?: Maybe<JiraFilter>;
|
|
7306
|
+
cursor: Scalars['String'];
|
|
7307
|
+
};
|
|
7308
|
+
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
6610
7309
|
export declare type JiraFlag = {
|
|
6611
7310
|
__typename?: 'JiraFlag';
|
|
6612
7311
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -6634,6 +7333,7 @@ export declare type JiraForgeDatetimeField = Node & JiraIssueField & JiraIssueFi
|
|
|
6634
7333
|
dateTime?: Maybe<Scalars['DateTime']>;
|
|
6635
7334
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6636
7335
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7336
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6637
7337
|
};
|
|
6638
7338
|
export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6639
7339
|
__typename?: 'JiraForgeGroupField';
|
|
@@ -6648,6 +7348,7 @@ export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueField
|
|
|
6648
7348
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6649
7349
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6650
7350
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7351
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6651
7352
|
};
|
|
6652
7353
|
export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
6653
7354
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -6670,6 +7371,7 @@ export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
6670
7371
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6671
7372
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6672
7373
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7374
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6673
7375
|
};
|
|
6674
7376
|
export declare type JiraForgeGroupsFieldSelectedGroupsConnectionArgs = {
|
|
6675
7377
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6695,6 +7397,7 @@ export declare type JiraForgeNumberField = Node & JiraIssueField & JiraIssueFiel
|
|
|
6695
7397
|
number?: Maybe<Scalars['Float']>;
|
|
6696
7398
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6697
7399
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7400
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6698
7401
|
};
|
|
6699
7402
|
export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6700
7403
|
__typename?: 'JiraForgeObjectField';
|
|
@@ -6707,6 +7410,7 @@ export declare type JiraForgeObjectField = Node & JiraIssueField & JiraIssueFiel
|
|
|
6707
7410
|
object?: Maybe<Scalars['String']>;
|
|
6708
7411
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6709
7412
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7413
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6710
7414
|
};
|
|
6711
7415
|
export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6712
7416
|
__typename?: 'JiraForgeStringField';
|
|
@@ -6719,6 +7423,7 @@ export declare type JiraForgeStringField = Node & JiraIssueField & JiraIssueFiel
|
|
|
6719
7423
|
text?: Maybe<Scalars['String']>;
|
|
6720
7424
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6721
7425
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7426
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6722
7427
|
};
|
|
6723
7428
|
export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6724
7429
|
__typename?: 'JiraForgeStringsField';
|
|
@@ -6734,6 +7439,7 @@ export declare type JiraForgeStringsField = Node & JiraIssueField & JiraIssueFie
|
|
|
6734
7439
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6735
7440
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6736
7441
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7442
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6737
7443
|
};
|
|
6738
7444
|
export declare type JiraForgeStringsFieldSelectedLabelsConnectionArgs = {
|
|
6739
7445
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6762,6 +7468,7 @@ export declare type JiraForgeUserField = Node & JiraIssueField & JiraIssueFieldC
|
|
|
6762
7468
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6763
7469
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6764
7470
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7471
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6765
7472
|
};
|
|
6766
7473
|
export declare type JiraForgeUserFieldUsersArgs = {
|
|
6767
7474
|
searchBy?: Maybe<Scalars['String']>;
|
|
@@ -6785,6 +7492,7 @@ export declare type JiraForgeUsersField = Node & JiraIssueField & JiraIssueField
|
|
|
6785
7492
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6786
7493
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6787
7494
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7495
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6788
7496
|
};
|
|
6789
7497
|
export declare type JiraForgeUsersFieldSelectedUsersConnectionArgs = {
|
|
6790
7498
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6853,6 +7561,17 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
6853
7561
|
id: Scalars['ID'];
|
|
6854
7562
|
group: JiraGroup;
|
|
6855
7563
|
};
|
|
7564
|
+
export declare type JiraInvalidJqlError = {
|
|
7565
|
+
__typename?: 'JiraInvalidJqlError';
|
|
7566
|
+
messages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
7567
|
+
};
|
|
7568
|
+
export declare type JiraInvalidSyntaxError = {
|
|
7569
|
+
__typename?: 'JiraInvalidSyntaxError';
|
|
7570
|
+
message?: Maybe<Scalars['String']>;
|
|
7571
|
+
errorType?: Maybe<JiraJqlSyntaxError>;
|
|
7572
|
+
line?: Maybe<Scalars['Int']>;
|
|
7573
|
+
column?: Maybe<Scalars['Int']>;
|
|
7574
|
+
};
|
|
6856
7575
|
export declare type JiraIssue = Node & {
|
|
6857
7576
|
__typename?: 'JiraIssue';
|
|
6858
7577
|
id: Scalars['ID'];
|
|
@@ -6865,9 +7584,17 @@ export declare type JiraIssue = Node & {
|
|
|
6865
7584
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
6866
7585
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
6867
7586
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
7587
|
+
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
7588
|
+
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
6868
7589
|
childIssues?: Maybe<JiraChildIssues>;
|
|
6869
7590
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6870
7591
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
7592
|
+
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
7593
|
+
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7594
|
+
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
7595
|
+
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
7596
|
+
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
7597
|
+
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
6871
7598
|
};
|
|
6872
7599
|
export declare type JiraIssueFieldsArgs = {
|
|
6873
7600
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -6906,6 +7633,20 @@ export declare type JiraIssueFieldSetsArgs = {
|
|
|
6906
7633
|
last?: Maybe<Scalars['Int']>;
|
|
6907
7634
|
before?: Maybe<Scalars['String']>;
|
|
6908
7635
|
};
|
|
7636
|
+
export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
7637
|
+
namespace?: Maybe<Scalars['String']>;
|
|
7638
|
+
viewId?: Maybe<Scalars['String']>;
|
|
7639
|
+
first?: Maybe<Scalars['Int']>;
|
|
7640
|
+
after?: Maybe<Scalars['String']>;
|
|
7641
|
+
last?: Maybe<Scalars['Int']>;
|
|
7642
|
+
before?: Maybe<Scalars['String']>;
|
|
7643
|
+
};
|
|
7644
|
+
export declare type JiraIssueIssueLinksArgs = {
|
|
7645
|
+
first?: Maybe<Scalars['Int']>;
|
|
7646
|
+
after?: Maybe<Scalars['String']>;
|
|
7647
|
+
last?: Maybe<Scalars['Int']>;
|
|
7648
|
+
before?: Maybe<Scalars['String']>;
|
|
7649
|
+
};
|
|
6909
7650
|
export declare type JiraIssueBranchDevSummary = {
|
|
6910
7651
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
6911
7652
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6916,6 +7657,10 @@ export declare type JiraIssueBranchDevSummaryContainer = {
|
|
|
6916
7657
|
overall?: Maybe<JiraIssueBranchDevSummary>;
|
|
6917
7658
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6918
7659
|
};
|
|
7660
|
+
export declare type JiraIssueBranches = {
|
|
7661
|
+
__typename?: 'JiraIssueBranches';
|
|
7662
|
+
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
7663
|
+
};
|
|
6919
7664
|
export declare type JiraIssueBuildDevSummary = {
|
|
6920
7665
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
6921
7666
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6939,12 +7684,24 @@ export declare type JiraIssueCommitDevSummaryContainer = {
|
|
|
6939
7684
|
overall?: Maybe<JiraIssueCommitDevSummary>;
|
|
6940
7685
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6941
7686
|
};
|
|
7687
|
+
export declare type JiraIssueCommits = {
|
|
7688
|
+
__typename?: 'JiraIssueCommits';
|
|
7689
|
+
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
7690
|
+
};
|
|
6942
7691
|
export declare type JiraIssueConnection = {
|
|
6943
7692
|
__typename?: 'JiraIssueConnection';
|
|
6944
7693
|
totalCount?: Maybe<Scalars['Int']>;
|
|
6945
7694
|
pageInfo: PageInfo;
|
|
6946
7695
|
jql?: Maybe<Scalars['String']>;
|
|
6947
7696
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
7697
|
+
issueSearchError?: Maybe<JiraIssueSearchError>;
|
|
7698
|
+
totalIssueSearchResultCount?: Maybe<Scalars['Int']>;
|
|
7699
|
+
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']>;
|
|
7700
|
+
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
7701
|
+
pageCursors?: Maybe<JiraPageCursors>;
|
|
7702
|
+
};
|
|
7703
|
+
export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
7704
|
+
maxCursors: Scalars['Int'];
|
|
6948
7705
|
};
|
|
6949
7706
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
6950
7707
|
__typename?: 'JiraIssueDeploymentEnvironment';
|
|
@@ -6966,6 +7723,12 @@ export declare enum JiraIssueDeploymentEnvironmentState {
|
|
|
6966
7723
|
NotDeployed = "NOT_DEPLOYED",
|
|
6967
7724
|
Deployed = "DEPLOYED"
|
|
6968
7725
|
}
|
|
7726
|
+
export declare type JiraIssueDevInfoDetails = {
|
|
7727
|
+
__typename?: 'JiraIssueDevInfoDetails';
|
|
7728
|
+
pullRequests?: Maybe<JiraIssuePullRequests>;
|
|
7729
|
+
branches?: Maybe<JiraIssueBranches>;
|
|
7730
|
+
commits?: Maybe<JiraIssueCommits>;
|
|
7731
|
+
};
|
|
6969
7732
|
export declare type JiraIssueDevSummary = {
|
|
6970
7733
|
__typename?: 'JiraIssueDevSummary';
|
|
6971
7734
|
branch?: Maybe<JiraIssueBranchDevSummaryContainer>;
|
|
@@ -7233,6 +7996,13 @@ export declare type JiraIssueLinkTypeRelationEdge = {
|
|
|
7233
7996
|
node?: Maybe<JiraIssueLinkTypeRelation>;
|
|
7234
7997
|
cursor: Scalars['String'];
|
|
7235
7998
|
};
|
|
7999
|
+
export declare type JiraIssueNavigatorPageInfo = {
|
|
8000
|
+
__typename?: 'JiraIssueNavigatorPageInfo';
|
|
8001
|
+
firstIssuePosition?: Maybe<Scalars['Int']>;
|
|
8002
|
+
lastIssuePosition?: Maybe<Scalars['Int']>;
|
|
8003
|
+
firstIssueKeyFromNextPage?: Maybe<Scalars['String']>;
|
|
8004
|
+
lastIssueKeyFromPreviousPage?: Maybe<Scalars['String']>;
|
|
8005
|
+
};
|
|
7236
8006
|
export declare type JiraIssuePullRequestDevSummary = {
|
|
7237
8007
|
__typename?: 'JiraIssuePullRequestDevSummary';
|
|
7238
8008
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7246,6 +8016,10 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
7246
8016
|
overall?: Maybe<JiraIssuePullRequestDevSummary>;
|
|
7247
8017
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
7248
8018
|
};
|
|
8019
|
+
export declare type JiraIssuePullRequests = {
|
|
8020
|
+
__typename?: 'JiraIssuePullRequests';
|
|
8021
|
+
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
8022
|
+
};
|
|
7249
8023
|
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
7250
8024
|
__typename?: 'JiraIssueRestrictionField';
|
|
7251
8025
|
id: Scalars['ID'];
|
|
@@ -7290,7 +8064,7 @@ export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
|
7290
8064
|
__typename?: 'JiraIssueSearchByFilter';
|
|
7291
8065
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
7292
8066
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
7293
|
-
filter?: Maybe<
|
|
8067
|
+
filter?: Maybe<JiraFilter>;
|
|
7294
8068
|
};
|
|
7295
8069
|
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
7296
8070
|
namespace?: Maybe<Scalars['String']>;
|
|
@@ -7347,6 +8121,7 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
7347
8121
|
before?: Maybe<Scalars['String']>;
|
|
7348
8122
|
after?: Maybe<Scalars['String']>;
|
|
7349
8123
|
};
|
|
8124
|
+
export declare type JiraIssueSearchError = JiraInvalidJqlError | JiraInvalidSyntaxError;
|
|
7350
8125
|
export declare type JiraIssueSearchFieldConfigSet = {
|
|
7351
8126
|
__typename?: 'JiraIssueSearchFieldConfigSet';
|
|
7352
8127
|
fieldConfigSetId?: Maybe<Scalars['String']>;
|
|
@@ -7360,6 +8135,7 @@ export declare type JiraIssueSearchFieldConfigSetConnection = {
|
|
|
7360
8135
|
totalCount?: Maybe<Scalars['Int']>;
|
|
7361
8136
|
pageInfo: PageInfo;
|
|
7362
8137
|
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldConfigSetEdge>>>;
|
|
8138
|
+
isWithholdingUnsupportedSelectedFields?: Maybe<Scalars['Boolean']>;
|
|
7363
8139
|
};
|
|
7364
8140
|
export declare type JiraIssueSearchFieldConfigSetEdge = {
|
|
7365
8141
|
__typename?: 'JiraIssueSearchFieldConfigSetEdge';
|
|
@@ -7375,6 +8151,13 @@ export declare type JiraIssueSearchFieldConfigSetsFilter = {
|
|
|
7375
8151
|
searchString?: Maybe<Scalars['String']>;
|
|
7376
8152
|
fieldConfigSetSelectedState?: Maybe<JiraIssueSearchFieldConfigSetSelectedState>;
|
|
7377
8153
|
};
|
|
8154
|
+
export declare type JiraIssueSearchInput = {
|
|
8155
|
+
jql?: Maybe<Scalars['String']>;
|
|
8156
|
+
filterId?: Maybe<Scalars['String']>;
|
|
8157
|
+
};
|
|
8158
|
+
export declare type JiraIssueSearchOptions = {
|
|
8159
|
+
issueKey?: Maybe<Scalars['String']>;
|
|
8160
|
+
};
|
|
7378
8161
|
export declare type JiraIssueSearchResult = {
|
|
7379
8162
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
7380
8163
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
@@ -7418,6 +8201,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
7418
8201
|
export declare type JiraIssueType = Node & {
|
|
7419
8202
|
__typename?: 'JiraIssueType';
|
|
7420
8203
|
id: Scalars['ID'];
|
|
8204
|
+
issueTypeId?: Maybe<Scalars['String']>;
|
|
7421
8205
|
name: Scalars['String'];
|
|
7422
8206
|
description?: Maybe<Scalars['String']>;
|
|
7423
8207
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -7822,6 +8606,29 @@ export declare type JiraJqlStatusFieldValue = JiraJqlFieldValue & {
|
|
|
7822
8606
|
displayName: Scalars['String'];
|
|
7823
8607
|
statusCategory: JiraStatusCategory;
|
|
7824
8608
|
};
|
|
8609
|
+
export declare enum JiraJqlSyntaxError {
|
|
8610
|
+
ReservedWord = "RESERVED_WORD",
|
|
8611
|
+
IllegalEscape = "ILLEGAL_ESCAPE",
|
|
8612
|
+
UnfinishedString = "UNFINISHED_STRING",
|
|
8613
|
+
IllegalCharacter = "ILLEGAL_CHARACTER",
|
|
8614
|
+
ReservedCharacter = "RESERVED_CHARACTER",
|
|
8615
|
+
Unknown = "UNKNOWN",
|
|
8616
|
+
IllegalNumber = "ILLEGAL_NUMBER",
|
|
8617
|
+
EmptyField = "EMPTY_FIELD",
|
|
8618
|
+
EmptyFunction = "EMPTY_FUNCTION",
|
|
8619
|
+
MissingFieldName = "MISSING_FIELD_NAME",
|
|
8620
|
+
NoOrder = "NO_ORDER",
|
|
8621
|
+
UnexpectedText = "UNEXPECTED_TEXT",
|
|
8622
|
+
NoOperator = "NO_OPERATOR",
|
|
8623
|
+
BadFieldId = "BAD_FIELD_ID",
|
|
8624
|
+
BadPropertyId = "BAD_PROPERTY_ID",
|
|
8625
|
+
BadFunctionArgument = "BAD_FUNCTION_ARGUMENT",
|
|
8626
|
+
EmptyFunctionArgument = "EMPTY_FUNCTION_ARGUMENT",
|
|
8627
|
+
MissingLogicalOperator = "MISSING_LOGICAL_OPERATOR",
|
|
8628
|
+
BadOperator = "BAD_OPERATOR",
|
|
8629
|
+
PredicateUnsupported = "PREDICATE_UNSUPPORTED",
|
|
8630
|
+
OperandUnsupported = "OPERAND_UNSUPPORTED"
|
|
8631
|
+
}
|
|
7825
8632
|
export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
|
|
7826
8633
|
__typename?: 'JiraJqlUserFieldValue';
|
|
7827
8634
|
jqlTerm: Scalars['String'];
|
|
@@ -8054,16 +8861,14 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
8054
8861
|
};
|
|
8055
8862
|
export declare type JiraMutation = {
|
|
8056
8863
|
__typename?: 'JiraMutation';
|
|
8057
|
-
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8058
|
-
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8059
8864
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8060
8865
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8061
8866
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8867
|
+
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8062
8868
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8869
|
+
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8870
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8871
|
+
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8067
8872
|
};
|
|
8068
8873
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8069
8874
|
cloudId: Scalars['ID'];
|
|
@@ -8075,9 +8880,20 @@ export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
|
8075
8880
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
8076
8881
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
8077
8882
|
};
|
|
8883
|
+
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
8884
|
+
input: JiraAddIssuesToFixVersionInput;
|
|
8885
|
+
};
|
|
8078
8886
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8079
8887
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8080
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
|
+
};
|
|
8081
8897
|
export declare type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8082
8898
|
__typename?: 'JiraNumberField';
|
|
8083
8899
|
id: Scalars['ID'];
|
|
@@ -8258,6 +9074,19 @@ export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
|
8258
9074
|
export declare type JiraOrderDirection = {
|
|
8259
9075
|
id?: Maybe<Scalars['ID']>;
|
|
8260
9076
|
};
|
|
9077
|
+
export declare type JiraPageCursor = {
|
|
9078
|
+
__typename?: 'JiraPageCursor';
|
|
9079
|
+
cursor?: Maybe<Scalars['String']>;
|
|
9080
|
+
pageNumber?: Maybe<Scalars['Int']>;
|
|
9081
|
+
isCurrent?: Maybe<Scalars['Boolean']>;
|
|
9082
|
+
};
|
|
9083
|
+
export declare type JiraPageCursors = {
|
|
9084
|
+
__typename?: 'JiraPageCursors';
|
|
9085
|
+
first?: Maybe<JiraPageCursor>;
|
|
9086
|
+
around?: Maybe<Array<Maybe<JiraPageCursor>>>;
|
|
9087
|
+
last?: Maybe<JiraPageCursor>;
|
|
9088
|
+
previous?: Maybe<JiraPageCursor>;
|
|
9089
|
+
};
|
|
8261
9090
|
export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8262
9091
|
__typename?: 'JiraParentIssueField';
|
|
8263
9092
|
id: Scalars['ID'];
|
|
@@ -8436,6 +9265,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
8436
9265
|
__typename?: 'JiraPlatformComment';
|
|
8437
9266
|
id: Scalars['ID'];
|
|
8438
9267
|
commentId: Scalars['ID'];
|
|
9268
|
+
issue?: Maybe<JiraIssue>;
|
|
8439
9269
|
webUrl?: Maybe<Scalars['URL']>;
|
|
8440
9270
|
author?: Maybe<User>;
|
|
8441
9271
|
updateAuthor?: Maybe<User>;
|
|
@@ -8516,6 +9346,8 @@ export declare type JiraProject = Node & {
|
|
|
8516
9346
|
projectType?: Maybe<JiraProjectType>;
|
|
8517
9347
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
8518
9348
|
status?: Maybe<JiraProjectStatus>;
|
|
9349
|
+
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9350
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
8519
9351
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
8520
9352
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
8521
9353
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -8575,6 +9407,42 @@ export declare type JiraProjectAndConfluenceSpaceRelationshipEdge = {
|
|
|
8575
9407
|
cursor: Scalars['String'];
|
|
8576
9408
|
node?: Maybe<JiraProjectAndConfluenceSpaceRelationship>;
|
|
8577
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
|
+
};
|
|
8578
9446
|
export declare type JiraProjectAndOpsgenieTeamRelationship = Node & {
|
|
8579
9447
|
__typename?: 'JiraProjectAndOpsgenieTeamRelationship';
|
|
8580
9448
|
id: Scalars['ID'];
|
|
@@ -8751,6 +9619,12 @@ export declare enum JiraProjectType {
|
|
|
8751
9619
|
Business = "BUSINESS",
|
|
8752
9620
|
Software = "SOFTWARE"
|
|
8753
9621
|
}
|
|
9622
|
+
export declare type JiraPullRequestReviewer = {
|
|
9623
|
+
__typename?: 'JiraPullRequestReviewer';
|
|
9624
|
+
avatar?: Maybe<JiraAvatar>;
|
|
9625
|
+
name?: Maybe<Scalars['String']>;
|
|
9626
|
+
hasApproved?: Maybe<Scalars['Boolean']>;
|
|
9627
|
+
};
|
|
8754
9628
|
export declare enum JiraPullRequestState {
|
|
8755
9629
|
Open = "OPEN",
|
|
8756
9630
|
Declined = "DECLINED",
|
|
@@ -8761,20 +9635,19 @@ export declare type JiraQuery = {
|
|
|
8761
9635
|
jiraProject?: Maybe<JiraProject>;
|
|
8762
9636
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
8763
9637
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
8764
|
-
|
|
9638
|
+
filter?: Maybe<JiraFilter>;
|
|
9639
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9640
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9641
|
+
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8765
9642
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
8766
9643
|
issueContainersByTypeByKey: JiraIssueItemContainersResult;
|
|
8767
|
-
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
8768
|
-
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
8769
|
-
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
8770
|
-
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
8771
9644
|
issueByKey?: Maybe<JiraIssue>;
|
|
8772
9645
|
issueById?: Maybe<JiraIssue>;
|
|
9646
|
+
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
8773
9647
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8774
9648
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9649
|
+
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
8775
9650
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
8776
|
-
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8777
|
-
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8778
9651
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
8779
9652
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
8780
9653
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -8785,6 +9658,14 @@ export declare type JiraQuery = {
|
|
|
8785
9658
|
version?: Maybe<JiraVersionResult>;
|
|
8786
9659
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
8787
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>;
|
|
8788
9669
|
};
|
|
8789
9670
|
export declare type JiraQueryJiraProjectArgs = {
|
|
8790
9671
|
id: Scalars['ID'];
|
|
@@ -8804,24 +9685,33 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
8804
9685
|
after?: Maybe<Scalars['String']>;
|
|
8805
9686
|
before?: Maybe<Scalars['String']>;
|
|
8806
9687
|
};
|
|
8807
|
-
export declare type
|
|
8808
|
-
|
|
9688
|
+
export declare type JiraQueryFilterArgs = {
|
|
9689
|
+
id: Scalars['ID'];
|
|
8809
9690
|
};
|
|
8810
|
-
export declare type
|
|
8811
|
-
|
|
9691
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9692
|
+
cloudId: Scalars['ID'];
|
|
9693
|
+
first?: Maybe<Scalars['Int']>;
|
|
9694
|
+
after?: Maybe<Scalars['String']>;
|
|
9695
|
+
last?: Maybe<Scalars['Int']>;
|
|
9696
|
+
before?: Maybe<Scalars['String']>;
|
|
8812
9697
|
};
|
|
8813
|
-
export declare type
|
|
9698
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
8814
9699
|
cloudId: Scalars['ID'];
|
|
8815
|
-
|
|
9700
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9701
|
+
first?: Maybe<Scalars['Int']>;
|
|
9702
|
+
after?: Maybe<Scalars['String']>;
|
|
9703
|
+
last?: Maybe<Scalars['Int']>;
|
|
9704
|
+
before?: Maybe<Scalars['String']>;
|
|
8816
9705
|
};
|
|
8817
|
-
export declare type
|
|
8818
|
-
|
|
9706
|
+
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9707
|
+
cloudId: Scalars['ID'];
|
|
9708
|
+
keys: Array<Scalars['String']>;
|
|
8819
9709
|
};
|
|
8820
|
-
export declare type
|
|
8821
|
-
|
|
9710
|
+
export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
9711
|
+
input: JiraIssueItemSystemContainerTypeWithIdInput;
|
|
8822
9712
|
};
|
|
8823
|
-
export declare type
|
|
8824
|
-
|
|
9713
|
+
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
9714
|
+
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
8825
9715
|
};
|
|
8826
9716
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
8827
9717
|
key: Scalars['String'];
|
|
@@ -8830,18 +9720,17 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
8830
9720
|
export declare type JiraQueryIssueByIdArgs = {
|
|
8831
9721
|
id: Scalars['ID'];
|
|
8832
9722
|
};
|
|
9723
|
+
export declare type JiraQueryIssuesByIdArgs = {
|
|
9724
|
+
ids: Array<Scalars['ID']>;
|
|
9725
|
+
};
|
|
8833
9726
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
8834
9727
|
issueId: Scalars['ID'];
|
|
8835
9728
|
};
|
|
8836
9729
|
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
8837
9730
|
issueKey: Scalars['String'];
|
|
8838
9731
|
};
|
|
8839
|
-
export declare type
|
|
8840
|
-
|
|
8841
|
-
keys: Array<Scalars['String']>;
|
|
8842
|
-
};
|
|
8843
|
-
export declare type JiraQueryJqlBuilderArgs = {
|
|
8844
|
-
cloudId: Scalars['ID'];
|
|
9732
|
+
export declare type JiraQueryCommentsByIdArgs = {
|
|
9733
|
+
input: Array<JiraCommentByIdInput>;
|
|
8845
9734
|
};
|
|
8846
9735
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
8847
9736
|
cloudId: Scalars['ID'];
|
|
@@ -8900,6 +9789,36 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
8900
9789
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
8901
9790
|
versionId: Scalars['ID'];
|
|
8902
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
|
+
};
|
|
8903
9822
|
export declare type JiraRadioSelectField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8904
9823
|
__typename?: 'JiraRadioSelectField';
|
|
8905
9824
|
id: Scalars['ID'];
|
|
@@ -9035,6 +9954,12 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
9035
9954
|
after: Scalars['DateTime'];
|
|
9036
9955
|
before: Scalars['DateTime'];
|
|
9037
9956
|
};
|
|
9957
|
+
export declare type JiraReplaceIssueSearchViewFieldConfigSetsInput = {
|
|
9958
|
+
before?: Maybe<Scalars['String']>;
|
|
9959
|
+
after?: Maybe<Scalars['String']>;
|
|
9960
|
+
nodes: Array<Scalars['String']>;
|
|
9961
|
+
inclusive?: Maybe<Scalars['Boolean']>;
|
|
9962
|
+
};
|
|
9038
9963
|
export declare type JiraResolution = Node & {
|
|
9039
9964
|
__typename?: 'JiraResolution';
|
|
9040
9965
|
id: Scalars['ID'];
|
|
@@ -9122,6 +10047,11 @@ export declare type JiraRoleEdge = {
|
|
|
9122
10047
|
node?: Maybe<JiraRole>;
|
|
9123
10048
|
cursor: Scalars['String'];
|
|
9124
10049
|
};
|
|
10050
|
+
export declare type JiraScmRepository = {
|
|
10051
|
+
__typename?: 'JiraScmRepository';
|
|
10052
|
+
name?: Maybe<Scalars['String']>;
|
|
10053
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
10054
|
+
};
|
|
9125
10055
|
export declare type JiraSecurityLevel = Node & {
|
|
9126
10056
|
__typename?: 'JiraSecurityLevel';
|
|
9127
10057
|
id: Scalars['ID'];
|
|
@@ -9292,6 +10222,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
9292
10222
|
__typename?: 'JiraServiceManagementComment';
|
|
9293
10223
|
id: Scalars['ID'];
|
|
9294
10224
|
commentId: Scalars['ID'];
|
|
10225
|
+
issue?: Maybe<JiraIssue>;
|
|
9295
10226
|
webUrl?: Maybe<Scalars['URL']>;
|
|
9296
10227
|
author?: Maybe<User>;
|
|
9297
10228
|
updateAuthor?: Maybe<User>;
|
|
@@ -9546,7 +10477,7 @@ export declare type JiraServiceManagementRequestLanguageField = Node & JiraIssue
|
|
|
9546
10477
|
export declare type JiraServiceManagementRequestType = Node & {
|
|
9547
10478
|
__typename?: 'JiraServiceManagementRequestType';
|
|
9548
10479
|
id: Scalars['ID'];
|
|
9549
|
-
requestTypeId: Scalars['
|
|
10480
|
+
requestTypeId: Scalars['String'];
|
|
9550
10481
|
name?: Maybe<Scalars['String']>;
|
|
9551
10482
|
key?: Maybe<Scalars['String']>;
|
|
9552
10483
|
description?: Maybe<Scalars['String']>;
|
|
@@ -9645,6 +10576,10 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
9645
10576
|
key: Scalars['String'];
|
|
9646
10577
|
value: Scalars['String'];
|
|
9647
10578
|
};
|
|
10579
|
+
export declare type JiraSimilarIssues = {
|
|
10580
|
+
__typename?: 'JiraSimilarIssues';
|
|
10581
|
+
featureEnabled: Scalars['Boolean'];
|
|
10582
|
+
};
|
|
9648
10583
|
export declare type JiraSingleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9649
10584
|
__typename?: 'JiraSingleGroupPickerField';
|
|
9650
10585
|
id: Scalars['ID'];
|
|
@@ -9751,6 +10686,8 @@ export declare type JiraSprint = Node & {
|
|
|
9751
10686
|
boardName?: Maybe<Scalars['String']>;
|
|
9752
10687
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
9753
10688
|
endDate?: Maybe<Scalars['DateTime']>;
|
|
10689
|
+
completionDate?: Maybe<Scalars['DateTime']>;
|
|
10690
|
+
goal?: Maybe<Scalars['String']>;
|
|
9754
10691
|
};
|
|
9755
10692
|
export declare type JiraSprintConnection = {
|
|
9756
10693
|
__typename?: 'JiraSprintConnection';
|
|
@@ -9862,6 +10799,24 @@ export declare type JiraSubtasksFieldSubtasksArgs = {
|
|
|
9862
10799
|
last?: Maybe<Scalars['Int']>;
|
|
9863
10800
|
before?: Maybe<Scalars['String']>;
|
|
9864
10801
|
};
|
|
10802
|
+
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
10803
|
+
__typename?: 'JiraSystemFilter';
|
|
10804
|
+
id: Scalars['ID'];
|
|
10805
|
+
filterId: Scalars['String'];
|
|
10806
|
+
jql: Scalars['String'];
|
|
10807
|
+
name: Scalars['String'];
|
|
10808
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
10809
|
+
};
|
|
10810
|
+
export declare type JiraSystemFilterConnection = {
|
|
10811
|
+
__typename?: 'JiraSystemFilterConnection';
|
|
10812
|
+
pageInfo: PageInfo;
|
|
10813
|
+
edges?: Maybe<Array<Maybe<JiraSystemFilterEdge>>>;
|
|
10814
|
+
};
|
|
10815
|
+
export declare type JiraSystemFilterEdge = {
|
|
10816
|
+
__typename?: 'JiraSystemFilterEdge';
|
|
10817
|
+
node?: Maybe<JiraSystemFilter>;
|
|
10818
|
+
cursor: Scalars['String'];
|
|
10819
|
+
};
|
|
9865
10820
|
export declare type JiraTeam = Node & {
|
|
9866
10821
|
__typename?: 'JiraTeam';
|
|
9867
10822
|
id: Scalars['ID'];
|
|
@@ -9905,7 +10860,8 @@ export declare type JiraTeamFieldTeamsArgs = {
|
|
|
9905
10860
|
};
|
|
9906
10861
|
export declare type JiraTeamView = {
|
|
9907
10862
|
__typename?: 'JiraTeamView';
|
|
9908
|
-
jiraSuppliedId
|
|
10863
|
+
jiraSuppliedId: Scalars['ID'];
|
|
10864
|
+
jiraSuppliedTeamId: Scalars['String'];
|
|
9909
10865
|
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
9910
10866
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
9911
10867
|
fullTeam?: Maybe<Team>;
|
|
@@ -10013,6 +10969,7 @@ export declare type JiraVersion = Node & {
|
|
|
10013
10969
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10014
10970
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
10015
10971
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
10972
|
+
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
10016
10973
|
issues?: Maybe<JiraIssueConnection>;
|
|
10017
10974
|
};
|
|
10018
10975
|
export declare type JiraVersionIssuesArgs = {
|
|
@@ -10022,6 +10979,14 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
10022
10979
|
before?: Maybe<Scalars['String']>;
|
|
10023
10980
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
10024
10981
|
};
|
|
10982
|
+
export declare type JiraVersionConnectAddonIframeData = {
|
|
10983
|
+
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
10984
|
+
appKey?: Maybe<Scalars['String']>;
|
|
10985
|
+
moduleKey?: Maybe<Scalars['String']>;
|
|
10986
|
+
appName?: Maybe<Scalars['String']>;
|
|
10987
|
+
location?: Maybe<Scalars['String']>;
|
|
10988
|
+
options?: Maybe<Scalars['JSON']>;
|
|
10989
|
+
};
|
|
10025
10990
|
export declare type JiraVersionConnection = {
|
|
10026
10991
|
__typename?: 'JiraVersionConnection';
|
|
10027
10992
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -10073,6 +11038,7 @@ export declare enum JiraVersionStatus {
|
|
|
10073
11038
|
}
|
|
10074
11039
|
export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
10075
11040
|
isOpenPullRequestEnabled?: Maybe<Scalars['Boolean']>;
|
|
11041
|
+
isOpenReviewEnabled?: Maybe<Scalars['Boolean']>;
|
|
10076
11042
|
isUnreviewedCodeEnabled?: Maybe<Scalars['Boolean']>;
|
|
10077
11043
|
isFailingBuildEnabled?: Maybe<Scalars['Boolean']>;
|
|
10078
11044
|
};
|
|
@@ -10426,6 +11392,7 @@ export declare type MarketplacePartner = {
|
|
|
10426
11392
|
support?: Maybe<MarketplacePartnerSupport>;
|
|
10427
11393
|
programs?: Maybe<MarketplacePartnerPrograms>;
|
|
10428
11394
|
partnerType?: Maybe<MarketplacePartnerType>;
|
|
11395
|
+
partnerTier?: Maybe<MarketplacePartnerTier>;
|
|
10429
11396
|
};
|
|
10430
11397
|
export declare type MarketplacePartnerAddress = {
|
|
10431
11398
|
__typename?: 'MarketplacePartnerAddress';
|
|
@@ -10478,6 +11445,16 @@ export declare enum MarketplacePartnerSupportHolidayFrequency {
|
|
|
10478
11445
|
OneTime = "ONE_TIME",
|
|
10479
11446
|
Annual = "ANNUAL"
|
|
10480
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
|
+
}
|
|
10481
11458
|
export declare enum MarketplacePartnerType {
|
|
10482
11459
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
10483
11460
|
}
|
|
@@ -10611,16 +11588,9 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
10611
11588
|
export declare type Mutation = {
|
|
10612
11589
|
__typename?: 'Mutation';
|
|
10613
11590
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
10614
|
-
|
|
11591
|
+
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
11592
|
+
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
10615
11593
|
shepherd?: Maybe<ShepherdMutation>;
|
|
10616
|
-
createReleaseNote: ContentPlatformReleaseNote;
|
|
10617
|
-
publishReleaseNote: ContentPlatformReleaseNote;
|
|
10618
|
-
updateReleaseNote: ContentPlatformReleaseNoteEntry;
|
|
10619
|
-
createApp?: Maybe<CreateAppResponse>;
|
|
10620
|
-
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
10621
|
-
deleteApp?: Maybe<DeleteAppResponse>;
|
|
10622
|
-
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
10623
|
-
ecosystem?: Maybe<EcosystemMutation>;
|
|
10624
11594
|
jsw?: Maybe<JswMutation>;
|
|
10625
11595
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
10626
11596
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
@@ -10646,7 +11616,18 @@ export declare type Mutation = {
|
|
|
10646
11616
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
10647
11617
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
10648
11618
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
11619
|
+
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
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;
|
|
10649
11629
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
11630
|
+
devOps?: Maybe<DevOpsMutation>;
|
|
10650
11631
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
10651
11632
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
10652
11633
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -10664,6 +11645,7 @@ export declare type Mutation = {
|
|
|
10664
11645
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
10665
11646
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
10666
11647
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
11648
|
+
jira?: Maybe<JiraMutation>;
|
|
10667
11649
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
10668
11650
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
10669
11651
|
deleteDevOpsService?: Maybe<DeleteDevOpsServicePayload>;
|
|
@@ -10672,10 +11654,10 @@ export declare type Mutation = {
|
|
|
10672
11654
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
10673
11655
|
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
10674
11656
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
10675
|
-
jira?: Maybe<JiraMutation>;
|
|
10676
11657
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
10677
11658
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
10678
11659
|
appStorage?: Maybe<AppStorageMutation>;
|
|
11660
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
10679
11661
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
10680
11662
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
10681
11663
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
@@ -10728,71 +11710,32 @@ export declare type Mutation = {
|
|
|
10728
11710
|
userAuthTokenForExtension: UserAuthTokenForExtensionResponse;
|
|
10729
11711
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
10730
11712
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
11713
|
+
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
11714
|
+
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
10731
11715
|
installApp?: Maybe<AppInstallationResponse>;
|
|
10732
11716
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
10733
11717
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
10734
11718
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
10735
11719
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
10736
|
-
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
10737
|
-
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
10738
|
-
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
10739
11720
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
10740
11721
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
10741
11722
|
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
10742
11723
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
10743
11724
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
10744
11725
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11726
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
11727
|
+
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
10745
11728
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
10746
11729
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
10747
11730
|
};
|
|
10748
|
-
export declare type
|
|
10749
|
-
|
|
10750
|
-
title?: Maybe<Scalars['String']>;
|
|
10751
|
-
changeType?: Maybe<Scalars['String']>;
|
|
10752
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
10753
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
10754
|
-
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
10755
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
10756
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
10757
|
-
announcementPlan?: Maybe<Scalars['String']>;
|
|
10758
|
-
productNames?: Maybe<Array<Scalars['String']>>;
|
|
10759
|
-
productIds?: Maybe<Array<Scalars['String']>>;
|
|
10760
|
-
description: Scalars['JSON'];
|
|
10761
|
-
changeCategory?: Maybe<Scalars['String']>;
|
|
10762
|
-
benefitsList?: Maybe<Scalars['JSON']>;
|
|
11731
|
+
export declare type MutationCreateJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11732
|
+
input: JiraProjectAndDevOpsToolRelationshipCreateInput;
|
|
10763
11733
|
};
|
|
10764
|
-
export declare type
|
|
10765
|
-
|
|
11734
|
+
export declare type MutationDeleteJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
11735
|
+
input: JiraProjectAndDevOpsToolRelationshipDeleteInput;
|
|
10766
11736
|
};
|
|
10767
|
-
export declare type
|
|
10768
|
-
|
|
10769
|
-
changeStatus?: Maybe<Scalars['String']>;
|
|
10770
|
-
title?: Maybe<Scalars['String']>;
|
|
10771
|
-
changeType?: Maybe<Scalars['String']>;
|
|
10772
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
10773
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
10774
|
-
featureRolloutDate?: Maybe<Scalars['DateTime']>;
|
|
10775
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
10776
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
10777
|
-
announcementPlan?: Maybe<Scalars['String']>;
|
|
10778
|
-
changeCategory?: Maybe<Scalars['String']>;
|
|
10779
|
-
relatedContexts?: Maybe<Array<Scalars['String']>>;
|
|
10780
|
-
relatedContextIds?: Maybe<Array<Scalars['String']>>;
|
|
10781
|
-
};
|
|
10782
|
-
export declare type MutationCreateAppArgs = {
|
|
10783
|
-
input: CreateAppInput;
|
|
10784
|
-
};
|
|
10785
|
-
export declare type MutationUpdateAppDetailsArgs = {
|
|
10786
|
-
input: UpdateAppDetailsInput;
|
|
10787
|
-
};
|
|
10788
|
-
export declare type MutationDeleteAppArgs = {
|
|
10789
|
-
input: DeleteAppInput;
|
|
10790
|
-
};
|
|
10791
|
-
export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
10792
|
-
input: UpdateAtlassianOAuthClientInput;
|
|
10793
|
-
};
|
|
10794
|
-
export declare type MutationCreateColumnArgs = {
|
|
10795
|
-
input?: Maybe<CreateColumnInput>;
|
|
11737
|
+
export declare type MutationCreateColumnArgs = {
|
|
11738
|
+
input?: Maybe<CreateColumnInput>;
|
|
10796
11739
|
};
|
|
10797
11740
|
export declare type MutationSetColumnNameArgs = {
|
|
10798
11741
|
input?: Maybe<SetColumnNameInput>;
|
|
@@ -10863,6 +11806,58 @@ export declare type MutationRankCardParentArgs = {
|
|
|
10863
11806
|
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
10864
11807
|
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
10865
11808
|
};
|
|
11809
|
+
export declare type MutationToggleBoardFeatureArgs = {
|
|
11810
|
+
input?: Maybe<ToggleBoardFeatureInput>;
|
|
11811
|
+
};
|
|
11812
|
+
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
11813
|
+
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
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
|
+
};
|
|
10866
11861
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
10867
11862
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
10868
11863
|
};
|
|
@@ -11109,6 +12104,12 @@ export declare type MutationCreateWebTriggerUrlArgs = {
|
|
|
11109
12104
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
11110
12105
|
id: Scalars['ID'];
|
|
11111
12106
|
};
|
|
12107
|
+
export declare type MutationWatchMarketplaceAppArgs = {
|
|
12108
|
+
id: Scalars['ID'];
|
|
12109
|
+
};
|
|
12110
|
+
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
12111
|
+
id: Scalars['ID'];
|
|
12112
|
+
};
|
|
11112
12113
|
export declare type MutationInstallAppArgs = {
|
|
11113
12114
|
input: AppInstallationInput;
|
|
11114
12115
|
};
|
|
@@ -11124,12 +12125,6 @@ export declare type MutationSubscribeToAppArgs = {
|
|
|
11124
12125
|
export declare type MutationUnsubscribeFromAppArgs = {
|
|
11125
12126
|
input: AppUnsubscribeInput;
|
|
11126
12127
|
};
|
|
11127
|
-
export declare type MutationWatchMarketplaceAppArgs = {
|
|
11128
|
-
id: Scalars['ID'];
|
|
11129
|
-
};
|
|
11130
|
-
export declare type MutationUnwatchMarketplaceAppArgs = {
|
|
11131
|
-
id: Scalars['ID'];
|
|
11132
|
-
};
|
|
11133
12128
|
export declare type MutationCreateAppDeploymentUrlArgs = {
|
|
11134
12129
|
input: CreateAppDeploymentUrlInput;
|
|
11135
12130
|
};
|
|
@@ -11208,9 +12203,14 @@ export declare type MyActivityViewedArgs = {
|
|
|
11208
12203
|
after?: Maybe<Scalars['String']>;
|
|
11209
12204
|
};
|
|
11210
12205
|
export declare type MyActivityFilter = {
|
|
12206
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
11211
12207
|
type?: Maybe<ActivitiesFilterType>;
|
|
11212
12208
|
arguments?: Maybe<ActivityFilterArgs>;
|
|
11213
12209
|
};
|
|
12210
|
+
export declare type NadelBatchObjectIdentifiedBy = {
|
|
12211
|
+
sourceId: Scalars['String'];
|
|
12212
|
+
resultId: Scalars['String'];
|
|
12213
|
+
};
|
|
11214
12214
|
export declare type NadelHydrationArgument = {
|
|
11215
12215
|
name: Scalars['String'];
|
|
11216
12216
|
value: Scalars['String'];
|
|
@@ -11979,6 +12979,7 @@ export declare type PolarisMatrixAxis = {
|
|
|
11979
12979
|
__typename?: 'PolarisMatrixAxis';
|
|
11980
12980
|
dimension: Scalars['String'];
|
|
11981
12981
|
field: PolarisIdeaField;
|
|
12982
|
+
fieldOptions?: Maybe<Array<PolarisGroupValue>>;
|
|
11982
12983
|
};
|
|
11983
12984
|
export declare type PolarisMatrixConfig = {
|
|
11984
12985
|
__typename?: 'PolarisMatrixConfig';
|
|
@@ -12081,25 +13082,25 @@ export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
|
|
|
12081
13082
|
};
|
|
12082
13083
|
export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
|
|
12083
13084
|
listId: Scalars['ID'];
|
|
12084
|
-
|
|
13085
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12085
13086
|
};
|
|
12086
13087
|
export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
|
|
12087
13088
|
listId: Scalars['ID'];
|
|
12088
|
-
|
|
13089
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12089
13090
|
};
|
|
12090
13091
|
export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
|
|
12091
13092
|
listId: Scalars['ID'];
|
|
12092
13093
|
refId: Scalars['ID'];
|
|
12093
|
-
|
|
13094
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12094
13095
|
};
|
|
12095
13096
|
export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
|
|
12096
13097
|
listId: Scalars['ID'];
|
|
12097
13098
|
refId: Scalars['ID'];
|
|
12098
|
-
|
|
13099
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12099
13100
|
};
|
|
12100
13101
|
export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
|
|
12101
13102
|
listId: Scalars['ID'];
|
|
12102
|
-
|
|
13103
|
+
items?: Maybe<Array<Scalars['ID']>>;
|
|
12103
13104
|
};
|
|
12104
13105
|
export declare type PolarisRankingQueryNamespace = {
|
|
12105
13106
|
__typename?: 'PolarisRankingQueryNamespace';
|
|
@@ -12286,6 +13287,7 @@ export declare type PolarisView = {
|
|
|
12286
13287
|
lastViewed?: Maybe<Array<Maybe<PolarisViewLastViewed>>>;
|
|
12287
13288
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
12288
13289
|
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
13290
|
+
sortMode: PolarisViewSortMode;
|
|
12289
13291
|
};
|
|
12290
13292
|
export declare type PolarisViewJqlArgs = {
|
|
12291
13293
|
filter?: Maybe<PolarisFilterInput>;
|
|
@@ -12352,6 +13354,11 @@ export declare enum PolarisViewSetType {
|
|
|
12352
13354
|
Single = "SINGLE",
|
|
12353
13355
|
Section = "SECTION"
|
|
12354
13356
|
}
|
|
13357
|
+
export declare enum PolarisViewSortMode {
|
|
13358
|
+
ProjectRank = "PROJECT_RANK",
|
|
13359
|
+
ViewRank = "VIEW_RANK",
|
|
13360
|
+
FieldsSort = "FIELDS_SORT"
|
|
13361
|
+
}
|
|
12355
13362
|
export declare type PolarisViewTableColumnSize = {
|
|
12356
13363
|
__typename?: 'PolarisViewTableColumnSize';
|
|
12357
13364
|
field: PolarisIdeaField;
|
|
@@ -12377,34 +13384,36 @@ export declare type ProjectAvatars = {
|
|
|
12377
13384
|
};
|
|
12378
13385
|
export declare type Query = {
|
|
12379
13386
|
__typename?: 'Query';
|
|
12380
|
-
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
12381
13387
|
echo?: Maybe<Scalars['String']>;
|
|
12382
13388
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
12383
13389
|
node?: Maybe<Node>;
|
|
12384
|
-
|
|
13390
|
+
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
13391
|
+
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
12385
13392
|
activities?: Maybe<Activities>;
|
|
12386
13393
|
activity?: Maybe<Activity>;
|
|
12387
13394
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
12388
|
-
bitbucket?: Maybe<BitbucketQuery>;
|
|
12389
13395
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13396
|
+
bitbucket?: Maybe<BitbucketQuery>;
|
|
12390
13397
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
12391
|
-
|
|
12392
|
-
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
12393
|
-
practicePages: ContentPlatformPracticePagesConnection;
|
|
12394
|
-
practicePage: ContentPlatformPracticePage;
|
|
12395
|
-
apps?: Maybe<AppConnection>;
|
|
12396
|
-
app?: Maybe<App>;
|
|
12397
|
-
appHostServices?: Maybe<Array<AppHostService>>;
|
|
13398
|
+
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
12398
13399
|
jsw?: Maybe<JswQuery>;
|
|
12399
13400
|
boardScope?: Maybe<BoardScope>;
|
|
12400
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;
|
|
12401
13410
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
12402
13411
|
search?: Maybe<SearchQueryApi>;
|
|
12403
|
-
|
|
13412
|
+
townsquare?: Maybe<TownsquareQueryApi>;
|
|
12404
13413
|
me: AuthenticationContext;
|
|
12405
13414
|
user?: Maybe<User>;
|
|
12406
13415
|
users?: Maybe<Array<User>>;
|
|
12407
|
-
|
|
13416
|
+
devOps?: Maybe<DevOps>;
|
|
12408
13417
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12409
13418
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12410
13419
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
@@ -12421,25 +13430,27 @@ export declare type Query = {
|
|
|
12421
13430
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
12422
13431
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
12423
13432
|
codeInJira?: Maybe<CodeInJira>;
|
|
13433
|
+
jira?: Maybe<JiraQuery>;
|
|
12424
13434
|
devOpsService?: Maybe<DevOpsService>;
|
|
12425
13435
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
12426
13436
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
12427
13437
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
12428
13438
|
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
12429
13439
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
12430
|
-
|
|
13440
|
+
avocado?: Maybe<Avocado>;
|
|
12431
13441
|
appLogs?: Maybe<AppLogConnection>;
|
|
12432
13442
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
12433
13443
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
12434
13444
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
12435
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
12436
13445
|
team?: Maybe<TeamQuery>;
|
|
13446
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
12437
13447
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
12438
13448
|
testing?: Maybe<Testing>;
|
|
12439
13449
|
movie?: Maybe<TestingMovie>;
|
|
12440
13450
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
12441
13451
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
12442
13452
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
13453
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12443
13454
|
polarisProject?: Maybe<PolarisProject>;
|
|
12444
13455
|
polarisView?: Maybe<PolarisView>;
|
|
12445
13456
|
polarisAPIVersion?: Maybe<Scalars['String']>;
|
|
@@ -12456,20 +13467,21 @@ export declare type Query = {
|
|
|
12456
13467
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
12457
13468
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
12458
13469
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
12459
|
-
dvcs?: Maybe<DvcsQuery>;
|
|
12460
13470
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
13471
|
+
dvcs?: Maybe<DvcsQuery>;
|
|
12461
13472
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
12462
|
-
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
12463
|
-
ecosystem?: Maybe<EcosystemQuery>;
|
|
12464
|
-
jiraReleases?: Maybe<JiraReleases>;
|
|
12465
13473
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
12466
13474
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
12467
13475
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
12468
13476
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
12469
13477
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
12470
13478
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
12471
|
-
|
|
13479
|
+
jiraReleases?: Maybe<JiraReleases>;
|
|
13480
|
+
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
13481
|
+
ecosystem?: Maybe<EcosystemQuery>;
|
|
12472
13482
|
appDeployment?: Maybe<AppDeployment>;
|
|
13483
|
+
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13484
|
+
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
12473
13485
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
12474
13486
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
12475
13487
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
@@ -12478,23 +13490,17 @@ export declare type Query = {
|
|
|
12478
13490
|
export declare type QueryNodeArgs = {
|
|
12479
13491
|
id: Scalars['ID'];
|
|
12480
13492
|
};
|
|
12481
|
-
export declare type
|
|
12482
|
-
|
|
12483
|
-
first?: Maybe<Scalars['Int']>;
|
|
12484
|
-
filter?: Maybe<ContentPlatformReleaseNoteFilterOptions>;
|
|
12485
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
12486
|
-
orderBy?: Maybe<Scalars['String']>;
|
|
13493
|
+
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
13494
|
+
id: Scalars['ID'];
|
|
12487
13495
|
};
|
|
12488
|
-
export declare type
|
|
12489
|
-
|
|
12490
|
-
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
13496
|
+
export declare type QueryBoardScopeArgs = {
|
|
13497
|
+
boardId: Scalars['ID'];
|
|
12491
13498
|
};
|
|
12492
|
-
export declare type
|
|
12493
|
-
|
|
12494
|
-
first?: Maybe<Scalars['Int']>;
|
|
13499
|
+
export declare type QueryDevelopmentInformationArgs = {
|
|
13500
|
+
issueId: Scalars['ID'];
|
|
12495
13501
|
};
|
|
12496
|
-
export declare type
|
|
12497
|
-
|
|
13502
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13503
|
+
projectAri: Scalars['ID'];
|
|
12498
13504
|
};
|
|
12499
13505
|
export declare type QueryAppsArgs = {
|
|
12500
13506
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -12509,11 +13515,23 @@ export declare type QueryAppArgs = {
|
|
|
12509
13515
|
export declare type QueryAppHostServicesArgs = {
|
|
12510
13516
|
filter?: Maybe<AppServicesFilter>;
|
|
12511
13517
|
};
|
|
12512
|
-
export declare type
|
|
12513
|
-
|
|
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']>;
|
|
12514
13524
|
};
|
|
12515
|
-
export declare type
|
|
12516
|
-
|
|
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'];
|
|
12517
13535
|
};
|
|
12518
13536
|
export declare type QueryUserArgs = {
|
|
12519
13537
|
accountId: Scalars['ID'];
|
|
@@ -12727,9 +13745,6 @@ export declare type QueryWebTriggerUrlsByAppContextArgs = {
|
|
|
12727
13745
|
envId: Scalars['ID'];
|
|
12728
13746
|
contextId: Scalars['ID'];
|
|
12729
13747
|
};
|
|
12730
|
-
export declare type QueryAppInstallationTaskArgs = {
|
|
12731
|
-
id: Scalars['ID'];
|
|
12732
|
-
};
|
|
12733
13748
|
export declare type QueryMarketplacePartnerArgs = {
|
|
12734
13749
|
id: Scalars['ID'];
|
|
12735
13750
|
};
|
|
@@ -12747,6 +13762,9 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
12747
13762
|
hostingType: AtlassianProductHostingType;
|
|
12748
13763
|
pricingPlanOptions?: Maybe<MarketplacePricingPlanOptions>;
|
|
12749
13764
|
};
|
|
13765
|
+
export declare type QueryAppInstallationTaskArgs = {
|
|
13766
|
+
id: Scalars['ID'];
|
|
13767
|
+
};
|
|
12750
13768
|
export declare type QueryAppDeploymentArgs = {
|
|
12751
13769
|
appId: Scalars['ID'];
|
|
12752
13770
|
environmentKey: Scalars['String'];
|
|
@@ -12798,7 +13816,11 @@ export declare type RankingDiffPayload = {
|
|
|
12798
13816
|
};
|
|
12799
13817
|
export declare enum RateLimitingCurrency {
|
|
12800
13818
|
TestingService = "TESTING_SERVICE",
|
|
13819
|
+
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
13820
|
+
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
12801
13821
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
13822
|
+
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
13823
|
+
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
12802
13824
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
12803
13825
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
12804
13826
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
@@ -12890,6 +13912,41 @@ export declare type ResolvedPolarisObjectExternalAuth = {
|
|
|
12890
13912
|
displayName: Scalars['String'];
|
|
12891
13913
|
url: Scalars['String'];
|
|
12892
13914
|
};
|
|
13915
|
+
export declare type RoadmapAddItemInput = {
|
|
13916
|
+
projectId: Scalars['ID'];
|
|
13917
|
+
itemTypeId: Scalars['ID'];
|
|
13918
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
13919
|
+
summary: Scalars['String'];
|
|
13920
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
13921
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
13922
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
13923
|
+
rank?: Maybe<RoadmapAddItemRank>;
|
|
13924
|
+
jql?: Maybe<Scalars['String']>;
|
|
13925
|
+
assignee?: Maybe<Scalars['String']>;
|
|
13926
|
+
labels?: Maybe<Array<Scalars['String']>>;
|
|
13927
|
+
componentIds?: Maybe<Array<Scalars['ID']>>;
|
|
13928
|
+
versionIds?: Maybe<Array<Scalars['ID']>>;
|
|
13929
|
+
};
|
|
13930
|
+
export declare type RoadmapAddItemPayload = Payload & {
|
|
13931
|
+
__typename?: 'RoadmapAddItemPayload';
|
|
13932
|
+
success: Scalars['Boolean'];
|
|
13933
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13934
|
+
output?: Maybe<RoadmapAddItemResponse>;
|
|
13935
|
+
};
|
|
13936
|
+
export declare type RoadmapAddItemRank = {
|
|
13937
|
+
beforeId?: Maybe<Scalars['ID']>;
|
|
13938
|
+
};
|
|
13939
|
+
export declare type RoadmapAddItemResponse = {
|
|
13940
|
+
__typename?: 'RoadmapAddItemResponse';
|
|
13941
|
+
id: Scalars['ID'];
|
|
13942
|
+
key: Scalars['String'];
|
|
13943
|
+
item?: Maybe<RoadmapItem>;
|
|
13944
|
+
matchesSource: Scalars['Boolean'];
|
|
13945
|
+
};
|
|
13946
|
+
export declare type RoadmapAddLevelOneIssueTypeHealthcheckResolution = {
|
|
13947
|
+
create?: Maybe<RoadmapCreateLevelOneIssueType>;
|
|
13948
|
+
promote?: Maybe<RoadmapPromoteLevelOneIssueType>;
|
|
13949
|
+
};
|
|
12893
13950
|
export declare type RoadmapBoardConfiguration = {
|
|
12894
13951
|
__typename?: 'RoadmapBoardConfiguration';
|
|
12895
13952
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -12911,10 +13968,20 @@ export declare type RoadmapConfiguration = {
|
|
|
12911
13968
|
dependencies?: Maybe<RoadmapDependencyConfiguration>;
|
|
12912
13969
|
externalConfiguration?: Maybe<RoadmapExternalConfiguration>;
|
|
12913
13970
|
projectConfigurations: Array<RoadmapProjectConfiguration>;
|
|
13971
|
+
projectConfiguration?: Maybe<RoadmapProjectConfiguration>;
|
|
12914
13972
|
statusCategories: Array<RoadmapStatusCategory>;
|
|
12915
13973
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
12916
13974
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
12917
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
|
+
};
|
|
12918
13985
|
export declare type RoadmapCreationPreferences = {
|
|
12919
13986
|
__typename?: 'RoadmapCreationPreferences';
|
|
12920
13987
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -12931,6 +13998,9 @@ export declare type RoadmapDetails = {
|
|
|
12931
13998
|
roadmapConfiguration?: Maybe<RoadmapConfiguration>;
|
|
12932
13999
|
roadmapItems?: Maybe<RoadmapItemConnection>;
|
|
12933
14000
|
metadata?: Maybe<RoadmapMetadata>;
|
|
14001
|
+
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
14002
|
+
healthcheck?: Maybe<RoadmapHealthCheck>;
|
|
14003
|
+
content?: Maybe<RoadmapContent>;
|
|
12934
14004
|
};
|
|
12935
14005
|
export declare enum RoadmapEpicView {
|
|
12936
14006
|
All = "ALL",
|
|
@@ -12963,6 +14033,28 @@ export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
|
12963
14033
|
errors?: Maybe<Array<MutationError>>;
|
|
12964
14034
|
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
12965
14035
|
};
|
|
14036
|
+
export declare type RoadmapFilterConfiguration = {
|
|
14037
|
+
__typename?: 'RoadmapFilterConfiguration';
|
|
14038
|
+
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
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
|
+
};
|
|
12966
14058
|
export declare type RoadmapItem = {
|
|
12967
14059
|
__typename?: 'RoadmapItem';
|
|
12968
14060
|
id: Scalars['ID'];
|
|
@@ -12999,6 +14091,10 @@ export declare type RoadmapItemEdge = {
|
|
|
12999
14091
|
cursor: Scalars['String'];
|
|
13000
14092
|
node?: Maybe<RoadmapItem>;
|
|
13001
14093
|
};
|
|
14094
|
+
export declare type RoadmapItemRankInput = {
|
|
14095
|
+
id: Scalars['ID'];
|
|
14096
|
+
position: RoadmapRankPosition;
|
|
14097
|
+
};
|
|
13002
14098
|
export declare type RoadmapItemStatus = {
|
|
13003
14099
|
__typename?: 'RoadmapItemStatus';
|
|
13004
14100
|
id: Scalars['ID'];
|
|
@@ -13102,6 +14198,41 @@ export declare type RoadmapProjectValidation = {
|
|
|
13102
14198
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13103
14199
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13104
14200
|
};
|
|
14201
|
+
export declare type RoadmapPromoteLevelOneIssueType = {
|
|
14202
|
+
promoteItemTypeId: Scalars['ID'];
|
|
14203
|
+
};
|
|
14204
|
+
export declare type RoadmapQuickFilter = {
|
|
14205
|
+
__typename?: 'RoadmapQuickFilter';
|
|
14206
|
+
id: Scalars['ID'];
|
|
14207
|
+
name: Scalars['String'];
|
|
14208
|
+
query: Scalars['String'];
|
|
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
|
+
};
|
|
13105
14236
|
export declare type RoadmapSprint = {
|
|
13106
14237
|
__typename?: 'RoadmapSprint';
|
|
13107
14238
|
id: Scalars['ID'];
|
|
@@ -13126,6 +14257,43 @@ export declare enum RoadmapTimelineMode {
|
|
|
13126
14257
|
Months = "MONTHS",
|
|
13127
14258
|
Quarters = "QUARTERS"
|
|
13128
14259
|
}
|
|
14260
|
+
export declare type RoadmapToggleDependencyInput = {
|
|
14261
|
+
dependee: Scalars['ID'];
|
|
14262
|
+
dependency: Scalars['ID'];
|
|
14263
|
+
};
|
|
14264
|
+
export declare type RoadmapToggleDependencyPayload = Payload & {
|
|
14265
|
+
__typename?: 'RoadmapToggleDependencyPayload';
|
|
14266
|
+
success: Scalars['Boolean'];
|
|
14267
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14268
|
+
output?: Maybe<RoadmapToggleDependencyResponse>;
|
|
14269
|
+
};
|
|
14270
|
+
export declare type RoadmapToggleDependencyResponse = {
|
|
14271
|
+
__typename?: 'RoadmapToggleDependencyResponse';
|
|
14272
|
+
dependee: Scalars['ID'];
|
|
14273
|
+
dependency: Scalars['ID'];
|
|
14274
|
+
};
|
|
14275
|
+
export declare type RoadmapUpdateItemInput = {
|
|
14276
|
+
itemId: Scalars['ID'];
|
|
14277
|
+
projectId: Scalars['ID'];
|
|
14278
|
+
summary?: Maybe<Scalars['String']>;
|
|
14279
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
14280
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
14281
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
14282
|
+
rank?: Maybe<RoadmapItemRankInput>;
|
|
14283
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
14284
|
+
sprintId?: Maybe<Scalars['ID']>;
|
|
14285
|
+
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
14286
|
+
};
|
|
14287
|
+
export declare type RoadmapUpdateItemPayload = Payload & {
|
|
14288
|
+
__typename?: 'RoadmapUpdateItemPayload';
|
|
14289
|
+
success: Scalars['Boolean'];
|
|
14290
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14291
|
+
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
14292
|
+
};
|
|
14293
|
+
export declare type RoadmapUpdateItemResponse = {
|
|
14294
|
+
__typename?: 'RoadmapUpdateItemResponse';
|
|
14295
|
+
item?: Maybe<RoadmapItem>;
|
|
14296
|
+
};
|
|
13129
14297
|
export declare type RoadmapUserConfiguration = {
|
|
13130
14298
|
__typename?: 'RoadmapUserConfiguration';
|
|
13131
14299
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -13157,14 +14325,46 @@ export declare type RoadmapViewSettings = {
|
|
|
13157
14325
|
export declare type RoadmapsMutation = {
|
|
13158
14326
|
__typename?: 'RoadmapsMutation';
|
|
13159
14327
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
14328
|
+
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
14329
|
+
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
14330
|
+
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
14331
|
+
scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
|
|
14332
|
+
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
14333
|
+
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13160
14334
|
};
|
|
13161
14335
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13162
|
-
input
|
|
14336
|
+
input: RoadmapFeatureToggleInput;
|
|
14337
|
+
};
|
|
14338
|
+
export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
14339
|
+
sourceARI: Scalars['ID'];
|
|
14340
|
+
input: RoadmapResolveHealthcheckInput;
|
|
14341
|
+
};
|
|
14342
|
+
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
14343
|
+
sourceARI: Scalars['ID'];
|
|
14344
|
+
input: RoadmapAddItemInput;
|
|
14345
|
+
};
|
|
14346
|
+
export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
14347
|
+
sourceARI: Scalars['ID'];
|
|
14348
|
+
input: RoadmapUpdateItemInput;
|
|
14349
|
+
};
|
|
14350
|
+
export declare type RoadmapsMutationScheduleRoadmapItemsArgs = {
|
|
14351
|
+
sourceARI: Scalars['ID'];
|
|
14352
|
+
input: RoadmapScheduleItemsInput;
|
|
14353
|
+
};
|
|
14354
|
+
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
14355
|
+
sourceARI: Scalars['ID'];
|
|
14356
|
+
input: RoadmapToggleDependencyInput;
|
|
14357
|
+
};
|
|
14358
|
+
export declare type RoadmapsMutationRemoveRoadmapDependencyArgs = {
|
|
14359
|
+
sourceARI: Scalars['ID'];
|
|
14360
|
+
input: RoadmapToggleDependencyInput;
|
|
13163
14361
|
};
|
|
13164
14362
|
export declare type RoadmapsQuery = {
|
|
13165
14363
|
__typename?: 'RoadmapsQuery';
|
|
13166
14364
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
13167
14365
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
14366
|
+
roadmapFilterItems: Array<Scalars['ID']>;
|
|
14367
|
+
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
13168
14368
|
};
|
|
13169
14369
|
export declare type RoadmapsQueryRoadmapForSourceArgs = {
|
|
13170
14370
|
sourceARI: Scalars['ID'];
|
|
@@ -13174,6 +14374,13 @@ export declare type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
|
13174
14374
|
sourceARI: Scalars['ID'];
|
|
13175
14375
|
ids: Array<Scalars['ID']>;
|
|
13176
14376
|
};
|
|
14377
|
+
export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
|
|
14378
|
+
sourceARI: Scalars['ID'];
|
|
14379
|
+
quickFilterIds: Array<Scalars['ID']>;
|
|
14380
|
+
};
|
|
14381
|
+
export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
|
|
14382
|
+
sourceARI: Scalars['ID'];
|
|
14383
|
+
};
|
|
13177
14384
|
export declare type ScanPolarisProjectInput = {
|
|
13178
14385
|
project: Scalars['ID'];
|
|
13179
14386
|
refresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -13183,6 +14390,7 @@ export declare enum Scope {
|
|
|
13183
14390
|
AuthConfluenceUser = "AUTH_CONFLUENCE_USER",
|
|
13184
14391
|
ManageDirectory = "MANAGE_DIRECTORY",
|
|
13185
14392
|
ReadMe = "READ_ME",
|
|
14393
|
+
ReadAccount = "READ_ACCOUNT",
|
|
13186
14394
|
ViewUserprofile = "VIEW_USERPROFILE",
|
|
13187
14395
|
IdentityAtlassianExternal = "IDENTITY_ATLASSIAN_EXTERNAL",
|
|
13188
14396
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
@@ -13239,6 +14447,8 @@ export declare enum Scope {
|
|
|
13239
14447
|
WriteConfluenceSpacePermission = "WRITE_CONFLUENCE_SPACE_PERMISSION",
|
|
13240
14448
|
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
13241
14449
|
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
14450
|
+
ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
|
|
14451
|
+
WriteConfluenceUserProperty = "WRITE_CONFLUENCE_USER_PROPERTY",
|
|
13242
14452
|
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
13243
14453
|
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
13244
14454
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
@@ -13386,6 +14596,10 @@ export declare type SetAppStoredEntityPayload = Payload & {
|
|
|
13386
14596
|
success: Scalars['Boolean'];
|
|
13387
14597
|
errors?: Maybe<Array<MutationError>>;
|
|
13388
14598
|
};
|
|
14599
|
+
export declare type SetBoardEstimationTypeInput = {
|
|
14600
|
+
featureId: Scalars['String'];
|
|
14601
|
+
estimationType: Scalars['String'];
|
|
14602
|
+
};
|
|
13389
14603
|
export declare type SetColumnLimitInput = {
|
|
13390
14604
|
boardId: Scalars['ID'];
|
|
13391
14605
|
columnId: Scalars['ID'];
|
|
@@ -13478,7 +14692,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
13478
14692
|
};
|
|
13479
14693
|
export declare type ShepherdAlert = {
|
|
13480
14694
|
__typename?: 'ShepherdAlert';
|
|
13481
|
-
|
|
14695
|
+
assignee?: Maybe<ShepherdUser>;
|
|
13482
14696
|
cloudId?: Maybe<Scalars['ID']>;
|
|
13483
14697
|
createdOn: Scalars['DateTime'];
|
|
13484
14698
|
id: Scalars['ID'];
|
|
@@ -13515,6 +14729,7 @@ export declare type ShepherdAppInfo = {
|
|
|
13515
14729
|
loginUrl: Scalars['String'];
|
|
13516
14730
|
};
|
|
13517
14731
|
export declare type ShepherdCreateAlertInput = {
|
|
14732
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
13518
14733
|
cloudId?: Maybe<Scalars['ID']>;
|
|
13519
14734
|
orgId: Scalars['ID'];
|
|
13520
14735
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -13526,6 +14741,10 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
13526
14741
|
node?: Maybe<ShepherdAlert>;
|
|
13527
14742
|
success: Scalars['Boolean'];
|
|
13528
14743
|
};
|
|
14744
|
+
export declare type ShepherdCreateEmailInput = {
|
|
14745
|
+
email?: Maybe<Scalars['String']>;
|
|
14746
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14747
|
+
};
|
|
13529
14748
|
export declare type ShepherdCreateOrganizationInput = {
|
|
13530
14749
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
13531
14750
|
id: Scalars['ID'];
|
|
@@ -13536,6 +14755,41 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
|
13536
14755
|
node?: Maybe<ShepherdOrganization>;
|
|
13537
14756
|
success: Scalars['Boolean'];
|
|
13538
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
|
+
};
|
|
13539
14793
|
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
13540
14794
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
13541
14795
|
errorType?: Maybe<Scalars['String']>;
|
|
@@ -13546,8 +14800,10 @@ export declare type ShepherdMutation = {
|
|
|
13546
14800
|
__typename?: 'ShepherdMutation';
|
|
13547
14801
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
13548
14802
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
14803
|
+
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
13549
14804
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
13550
14805
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
14806
|
+
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
13551
14807
|
};
|
|
13552
14808
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
13553
14809
|
input: ShepherdCreateAlertInput;
|
|
@@ -13555,6 +14811,9 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
13555
14811
|
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
13556
14812
|
input: ShepherdCreateOrganizationInput;
|
|
13557
14813
|
};
|
|
14814
|
+
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
14815
|
+
input: ShepherdCreateSubscriptionInput;
|
|
14816
|
+
};
|
|
13558
14817
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
13559
14818
|
id: Scalars['ID'];
|
|
13560
14819
|
input: ShepherdUpdateAlertInput;
|
|
@@ -13563,19 +14822,25 @@ export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
|
13563
14822
|
id: Scalars['ID'];
|
|
13564
14823
|
input: ShepherdUpdateOrganizationInput;
|
|
13565
14824
|
};
|
|
14825
|
+
export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
14826
|
+
id: Scalars['ID'];
|
|
14827
|
+
input: ShepherdUpdateSubscriptionInput;
|
|
14828
|
+
};
|
|
13566
14829
|
export declare type ShepherdOrganization = {
|
|
13567
14830
|
__typename?: 'ShepherdOrganization';
|
|
13568
14831
|
createdOn: Scalars['DateTime'];
|
|
13569
14832
|
enabled: Scalars['Boolean'];
|
|
13570
14833
|
id: Scalars['ID'];
|
|
14834
|
+
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
13571
14835
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
13572
14836
|
};
|
|
14837
|
+
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
13573
14838
|
export declare type ShepherdQuery = {
|
|
13574
14839
|
__typename?: 'ShepherdQuery';
|
|
13575
14840
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
13576
14841
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
13577
14842
|
shepherdAppInfo: ShepherdAppInfo;
|
|
13578
|
-
shepherdOrganization?: Maybe<
|
|
14843
|
+
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
13579
14844
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
13580
14845
|
};
|
|
13581
14846
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -13591,7 +14856,21 @@ export declare enum ShepherdQueryErrorType {
|
|
|
13591
14856
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
13592
14857
|
Unauthorized = "UNAUTHORIZED"
|
|
13593
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;
|
|
13594
14872
|
export declare type ShepherdUpdateAlertInput = {
|
|
14873
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
13595
14874
|
status?: Maybe<ShepherdAlertStatus>;
|
|
13596
14875
|
};
|
|
13597
14876
|
export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
@@ -13600,6 +14879,10 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
13600
14879
|
node?: Maybe<ShepherdAlert>;
|
|
13601
14880
|
success: Scalars['Boolean'];
|
|
13602
14881
|
};
|
|
14882
|
+
export declare type ShepherdUpdateEmailInput = {
|
|
14883
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14884
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14885
|
+
};
|
|
13603
14886
|
export declare type ShepherdUpdateOrganizationInput = {
|
|
13604
14887
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
13605
14888
|
};
|
|
@@ -13609,10 +14892,50 @@ export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
|
13609
14892
|
node?: Maybe<ShepherdOrganization>;
|
|
13610
14893
|
success: Scalars['Boolean'];
|
|
13611
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
|
+
};
|
|
13612
14911
|
export declare type ShepherdUser = {
|
|
13613
14912
|
__typename?: 'ShepherdUser';
|
|
13614
14913
|
user?: Maybe<User>;
|
|
13615
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
|
+
}
|
|
13616
14939
|
export declare type SoftwareBoard = {
|
|
13617
14940
|
__typename?: 'SoftwareBoard';
|
|
13618
14941
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -13835,7 +15158,7 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
13835
15158
|
projectType?: JiraProjectType;
|
|
13836
15159
|
filter?: JiraProjectFilterInput;
|
|
13837
15160
|
};
|
|
13838
|
-
export declare type SupportRequest =
|
|
15161
|
+
export declare type SupportRequest = {
|
|
13839
15162
|
__typename?: 'SupportRequest';
|
|
13840
15163
|
id: Scalars['ID'];
|
|
13841
15164
|
summary?: Maybe<Scalars['String']>;
|
|
@@ -13847,12 +15170,16 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
13847
15170
|
reporter: SupportRequestUser;
|
|
13848
15171
|
participants: Array<SupportRequestUser>;
|
|
13849
15172
|
fields: Array<SupportRequestField>;
|
|
15173
|
+
defaultFields: Array<SupportRequestField>;
|
|
15174
|
+
experienceFields?: Maybe<Array<SupportRequestField>>;
|
|
13850
15175
|
comments?: Maybe<SupportRequestComments>;
|
|
13851
15176
|
statuses: SupportRequestStatuses;
|
|
13852
15177
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
13853
15178
|
targetScreen: Scalars['String'];
|
|
15179
|
+
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
13854
15180
|
lastComment: SupportRequestComments;
|
|
13855
15181
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
15182
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
13856
15183
|
};
|
|
13857
15184
|
export declare type SupportRequestCommentsArgs = {
|
|
13858
15185
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -13881,6 +15208,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
13881
15208
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13882
15209
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13883
15210
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
15211
|
+
updateSupportRequest?: Maybe<SupportRequest>;
|
|
13884
15212
|
};
|
|
13885
15213
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
13886
15214
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -13900,6 +15228,9 @@ export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationR
|
|
|
13900
15228
|
sen?: Maybe<Scalars['String']>;
|
|
13901
15229
|
operation: SupportRequestNamedContactOperation;
|
|
13902
15230
|
};
|
|
15231
|
+
export declare type SupportRequestCatalogMutationApiUpdateSupportRequestArgs = {
|
|
15232
|
+
input: SupportRequestUpdateInput;
|
|
15233
|
+
};
|
|
13903
15234
|
export declare type SupportRequestCatalogQueryApi = {
|
|
13904
15235
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
13905
15236
|
me?: Maybe<SupportRequestPage>;
|
|
@@ -13924,16 +15255,6 @@ export declare type SupportRequestComments = {
|
|
|
13924
15255
|
lastPage: Scalars['Boolean'];
|
|
13925
15256
|
values: Array<SupportRequestComment>;
|
|
13926
15257
|
};
|
|
13927
|
-
export declare type SupportRequestCommonRequest = {
|
|
13928
|
-
id: Scalars['ID'];
|
|
13929
|
-
summary?: Maybe<Scalars['String']>;
|
|
13930
|
-
description: Scalars['String'];
|
|
13931
|
-
requestTypeName: Scalars['String'];
|
|
13932
|
-
createdDate: SupportRequestDisplayableDateTime;
|
|
13933
|
-
status: SupportRequestStatus;
|
|
13934
|
-
reporter: SupportRequestUser;
|
|
13935
|
-
participants: Array<SupportRequestUser>;
|
|
13936
|
-
};
|
|
13937
15258
|
export declare type SupportRequestContactRelation = {
|
|
13938
15259
|
__typename?: 'SupportRequestContactRelation';
|
|
13939
15260
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
@@ -13949,13 +15270,21 @@ export declare type SupportRequestField = {
|
|
|
13949
15270
|
__typename?: 'SupportRequestField';
|
|
13950
15271
|
id: Scalars['String'];
|
|
13951
15272
|
label: Scalars['String'];
|
|
13952
|
-
value
|
|
15273
|
+
value?: Maybe<SupportRequestFieldValue>;
|
|
15274
|
+
dataType?: Maybe<SupportRequestFieldDataType>;
|
|
15275
|
+
editable?: Maybe<Scalars['Boolean']>;
|
|
13953
15276
|
};
|
|
15277
|
+
export declare enum SupportRequestFieldDataType {
|
|
15278
|
+
String = "STRING",
|
|
15279
|
+
Number = "NUMBER",
|
|
15280
|
+
Boolean = "BOOLEAN",
|
|
15281
|
+
Date = "DATE"
|
|
15282
|
+
}
|
|
13954
15283
|
export declare type SupportRequestFieldValue = {
|
|
13955
15284
|
__typename?: 'SupportRequestFieldValue';
|
|
13956
|
-
value
|
|
15285
|
+
value?: Maybe<Scalars['String']>;
|
|
13957
15286
|
};
|
|
13958
|
-
export declare type SupportRequestHierarchyRequest =
|
|
15287
|
+
export declare type SupportRequestHierarchyRequest = {
|
|
13959
15288
|
__typename?: 'SupportRequestHierarchyRequest';
|
|
13960
15289
|
id: Scalars['ID'];
|
|
13961
15290
|
summary?: Maybe<Scalars['String']>;
|
|
@@ -14082,6 +15411,14 @@ export declare type SupportRequestTransitions = {
|
|
|
14082
15411
|
lastPage: Scalars['Boolean'];
|
|
14083
15412
|
values: Array<SupportRequestTransition>;
|
|
14084
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
|
+
};
|
|
14085
15422
|
export declare type SupportRequestUser = {
|
|
14086
15423
|
__typename?: 'SupportRequestUser';
|
|
14087
15424
|
user?: Maybe<User>;
|
|
@@ -14100,10 +15437,7 @@ export declare type SupportRequestUsers = {
|
|
|
14100
15437
|
};
|
|
14101
15438
|
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
14102
15439
|
query?: Maybe<Scalars['String']>;
|
|
14103
|
-
|
|
14104
|
-
maxResults?: Maybe<Scalars['Int']>;
|
|
14105
|
-
includeActive?: Maybe<Scalars['Boolean']>;
|
|
14106
|
-
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
15440
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
14107
15441
|
};
|
|
14108
15442
|
export declare type SupportRequests = {
|
|
14109
15443
|
__typename?: 'SupportRequests';
|
|
@@ -14184,15 +15518,67 @@ export declare type Testing = {
|
|
|
14184
15518
|
__typename?: 'Testing';
|
|
14185
15519
|
echo?: Maybe<Scalars['String']>;
|
|
14186
15520
|
uuid?: Maybe<Scalars['String']>;
|
|
15521
|
+
error?: Maybe<Scalars['String']>;
|
|
15522
|
+
throwException?: Maybe<Scalars['String']>;
|
|
14187
15523
|
movie?: Maybe<TestingMovie>;
|
|
14188
15524
|
movies?: Maybe<Array<Maybe<TestingMovie>>>;
|
|
15525
|
+
performance?: Maybe<TestingPerformance>;
|
|
14189
15526
|
};
|
|
14190
15527
|
export declare type TestingEchoArgs = {
|
|
14191
15528
|
message?: Maybe<Scalars['String']>;
|
|
14192
15529
|
};
|
|
15530
|
+
export declare type TestingErrorArgs = {
|
|
15531
|
+
message?: Maybe<Scalars['String']>;
|
|
15532
|
+
};
|
|
15533
|
+
export declare type TestingThrowExceptionArgs = {
|
|
15534
|
+
message?: Maybe<Scalars['String']>;
|
|
15535
|
+
};
|
|
14193
15536
|
export declare type TestingMovieArgs = {
|
|
14194
15537
|
id: Scalars['ID'];
|
|
14195
15538
|
};
|
|
15539
|
+
export declare type TestingActivityConnection = {
|
|
15540
|
+
__typename?: 'TestingActivityConnection';
|
|
15541
|
+
nodes: Array<Maybe<TestingActivityItem>>;
|
|
15542
|
+
};
|
|
15543
|
+
export declare type TestingActivityContributor = {
|
|
15544
|
+
__typename?: 'TestingActivityContributor';
|
|
15545
|
+
profile?: Maybe<TestingActivityUser>;
|
|
15546
|
+
};
|
|
15547
|
+
export declare enum TestingActivityEventType {
|
|
15548
|
+
Assigned = "ASSIGNED",
|
|
15549
|
+
Unassigned = "UNASSIGNED",
|
|
15550
|
+
Viewed = "VIEWED",
|
|
15551
|
+
Commented = "COMMENTED",
|
|
15552
|
+
Updated = "UPDATED",
|
|
15553
|
+
Created = "CREATED",
|
|
15554
|
+
Liked = "LIKED",
|
|
15555
|
+
Transitioned = "TRANSITIONED",
|
|
15556
|
+
Published = "PUBLISHED",
|
|
15557
|
+
Edited = "EDITED"
|
|
15558
|
+
}
|
|
15559
|
+
export declare type TestingActivityItem = Node & {
|
|
15560
|
+
__typename?: 'TestingActivityItem';
|
|
15561
|
+
id: Scalars['ID'];
|
|
15562
|
+
timestamp?: Maybe<Scalars['String']>;
|
|
15563
|
+
eventType?: Maybe<TestingActivityEventType>;
|
|
15564
|
+
object?: Maybe<TestingActivityObject>;
|
|
15565
|
+
containers?: Maybe<Array<Maybe<TestingActivityObject>>>;
|
|
15566
|
+
contributors?: Maybe<Array<Maybe<TestingActivityContributor>>>;
|
|
15567
|
+
};
|
|
15568
|
+
export declare type TestingActivityObject = Node & {
|
|
15569
|
+
__typename?: 'TestingActivityObject';
|
|
15570
|
+
id: Scalars['ID'];
|
|
15571
|
+
name?: Maybe<Scalars['String']>;
|
|
15572
|
+
cloudID?: Maybe<Scalars['String']>;
|
|
15573
|
+
url?: Maybe<Scalars['String']>;
|
|
15574
|
+
iconURL?: Maybe<Scalars['String']>;
|
|
15575
|
+
};
|
|
15576
|
+
export declare type TestingActivityUser = {
|
|
15577
|
+
__typename?: 'TestingActivityUser';
|
|
15578
|
+
accountId: Scalars['ID'];
|
|
15579
|
+
name?: Maybe<Scalars['String']>;
|
|
15580
|
+
picture?: Maybe<Scalars['String']>;
|
|
15581
|
+
};
|
|
14196
15582
|
export declare type TestingCharacter = {
|
|
14197
15583
|
__typename?: 'TestingCharacter';
|
|
14198
15584
|
id: Scalars['ID'];
|
|
@@ -14204,6 +15590,27 @@ export declare type TestingMovie = {
|
|
|
14204
15590
|
renamedName?: Maybe<Scalars['String']>;
|
|
14205
15591
|
characters?: Maybe<Array<Maybe<TestingCharacter>>>;
|
|
14206
15592
|
};
|
|
15593
|
+
export declare type TestingMyActivity = {
|
|
15594
|
+
__typename?: 'TestingMyActivity';
|
|
15595
|
+
workedOn: TestingActivityConnection;
|
|
15596
|
+
viewed: TestingActivityConnection;
|
|
15597
|
+
};
|
|
15598
|
+
export declare type TestingMyActivityWorkedOnArgs = {
|
|
15599
|
+
howMany?: Maybe<Scalars['Int']>;
|
|
15600
|
+
howManyContainers?: Maybe<Scalars['Int']>;
|
|
15601
|
+
howManyContributors?: Maybe<Scalars['Int']>;
|
|
15602
|
+
inducedDelay?: Maybe<Scalars['Int']>;
|
|
15603
|
+
};
|
|
15604
|
+
export declare type TestingMyActivityViewedArgs = {
|
|
15605
|
+
howMany?: Maybe<Scalars['Int']>;
|
|
15606
|
+
howManyContainers?: Maybe<Scalars['Int']>;
|
|
15607
|
+
howManyContributors?: Maybe<Scalars['Int']>;
|
|
15608
|
+
inducedDelay?: Maybe<Scalars['Int']>;
|
|
15609
|
+
};
|
|
15610
|
+
export declare type TestingPerformance = {
|
|
15611
|
+
__typename?: 'TestingPerformance';
|
|
15612
|
+
myActivities: TestingMyActivity;
|
|
15613
|
+
};
|
|
14207
15614
|
export declare type ThirdPartyRepositoryInput = {
|
|
14208
15615
|
id: Scalars['ID'];
|
|
14209
15616
|
webUrl?: Maybe<Scalars['String']>;
|
|
@@ -14216,6 +15623,18 @@ export declare type TimeSeriesPoint = {
|
|
|
14216
15623
|
x: Scalars['DateTime'];
|
|
14217
15624
|
y: Scalars['Int'];
|
|
14218
15625
|
};
|
|
15626
|
+
export declare type ToggleBoardFeatureInput = {
|
|
15627
|
+
featureId: Scalars['String'];
|
|
15628
|
+
enabled: Scalars['Boolean'];
|
|
15629
|
+
};
|
|
15630
|
+
export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
15631
|
+
__typename?: 'ToggleBoardFeatureOutput';
|
|
15632
|
+
featureGroups: BoardFeatureGroupConnection;
|
|
15633
|
+
statusCode: Scalars['Int'];
|
|
15634
|
+
success: Scalars['Boolean'];
|
|
15635
|
+
message: Scalars['String'];
|
|
15636
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
15637
|
+
};
|
|
14219
15638
|
export declare type TownsquareComment = Node & {
|
|
14220
15639
|
__typename?: 'TownsquareComment';
|
|
14221
15640
|
creator?: Maybe<User>;
|
|
@@ -14552,6 +15971,7 @@ export declare type UpdateCompassComponentInput = {
|
|
|
14552
15971
|
description?: Maybe<Scalars['String']>;
|
|
14553
15972
|
ownerId?: Maybe<Scalars['ID']>;
|
|
14554
15973
|
fields?: Maybe<Array<UpdateCompassFieldInput>>;
|
|
15974
|
+
customFields?: Maybe<Array<CompassCustomFieldInput>>;
|
|
14555
15975
|
};
|
|
14556
15976
|
export declare type UpdateCompassComponentLinkInput = {
|
|
14557
15977
|
componentId: Scalars['ID'];
|
|
@@ -14851,6 +16271,7 @@ export declare type UpdatePolarisInsightPayload = Payload & {
|
|
|
14851
16271
|
export declare type UpdatePolarisMatrixAxis = {
|
|
14852
16272
|
dimension: Scalars['String'];
|
|
14853
16273
|
field: Scalars['ID'];
|
|
16274
|
+
fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
|
|
14854
16275
|
};
|
|
14855
16276
|
export declare type UpdatePolarisMatrixConfig = {
|
|
14856
16277
|
axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;
|
|
@@ -14911,6 +16332,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
14911
16332
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
14912
16333
|
timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
|
|
14913
16334
|
matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
|
|
16335
|
+
sortMode?: Maybe<PolarisViewSortMode>;
|
|
14914
16336
|
};
|
|
14915
16337
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
14916
16338
|
__typename?: 'UpdatePolarisViewPayload';
|
|
@@ -14984,7 +16406,7 @@ export declare type UserGrant = {
|
|
|
14984
16406
|
oauthClientId: Scalars['ID'];
|
|
14985
16407
|
appId?: Maybe<Scalars['ID']>;
|
|
14986
16408
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
14987
|
-
scopes
|
|
16409
|
+
scopes?: Maybe<Array<Maybe<AppHostServiceScope>>>;
|
|
14988
16410
|
};
|
|
14989
16411
|
export declare type UserGrantAppDetails = {
|
|
14990
16412
|
__typename?: 'UserGrantAppDetails';
|
|
@@ -15061,4 +16483,8 @@ export declare type _DirectiveArgument = {
|
|
|
15061
16483
|
name: Scalars['String'];
|
|
15062
16484
|
value: Scalars['String'];
|
|
15063
16485
|
};
|
|
16486
|
+
export declare enum SourceBillingType {
|
|
16487
|
+
Hams = "HAMS",
|
|
16488
|
+
Ccp = "CCP"
|
|
16489
|
+
}
|
|
15064
16490
|
//# sourceMappingURL=graphql-types.d.ts.map
|