@forge/cli-shared 0.0.0-experimental-e05f7a2 → 0.0.0-experimental-d18f8dd
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 +266 -2
- package/out/app-logs/graphql-client.js +2 -2
- package/out/apps/create-app-graphql-client.js +1 -1
- package/out/auth/personal/me-graphql-client.d.ts.map +1 -1
- package/out/auth/personal/me-graphql-client.js +10 -1
- package/out/config/config-file.d.ts +1 -0
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +8 -1
- package/out/graphql/app-environment-graphql-client.js +1 -1
- package/out/graphql/graphql-types.d.ts +3184 -217
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +195 -4
- package/out/graphql/minimal-graphql-runner.d.ts +5 -0
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +15 -1
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/shared/product.d.ts.map +1 -1
- package/out/shared/product.js +1 -1
- package/out/ui/text.d.ts +21 -4
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +37 -13
- package/package.json +3 -3
|
@@ -13,6 +13,7 @@ export declare type Scalars = {
|
|
|
13
13
|
AppStoredEntityFieldValue: any;
|
|
14
14
|
CardPaletteColor: any;
|
|
15
15
|
CardTypeHierarchyLevelType: any;
|
|
16
|
+
Date: any;
|
|
16
17
|
DateTime: any;
|
|
17
18
|
JSON: {
|
|
18
19
|
[key: string]: any;
|
|
@@ -153,16 +154,6 @@ export declare type ActivitiesUser = {
|
|
|
153
154
|
__typename?: 'ActivitiesUser';
|
|
154
155
|
profile?: Maybe<User>;
|
|
155
156
|
};
|
|
156
|
-
export declare type ActivityConnection = {
|
|
157
|
-
__typename?: 'ActivityConnection';
|
|
158
|
-
nodes: Array<Maybe<ActivityItem>>;
|
|
159
|
-
};
|
|
160
|
-
export declare type ActivityContributor = {
|
|
161
|
-
__typename?: 'ActivityContributor';
|
|
162
|
-
profile?: Maybe<User>;
|
|
163
|
-
lastAccessedDate?: Maybe<Scalars['String']>;
|
|
164
|
-
count?: Maybe<Scalars['Int']>;
|
|
165
|
-
};
|
|
166
157
|
export declare type ActivityEdge = {
|
|
167
158
|
__typename?: 'ActivityEdge';
|
|
168
159
|
cursor: Scalars['String'];
|
|
@@ -180,54 +171,6 @@ export declare enum ActivityEventType {
|
|
|
180
171
|
Published = "PUBLISHED",
|
|
181
172
|
Edited = "EDITED"
|
|
182
173
|
}
|
|
183
|
-
export declare type ActivityFilter = {
|
|
184
|
-
aaIDs?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
185
|
-
cloudIDs?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
186
|
-
products?: Maybe<Array<Maybe<ActivityProduct>>>;
|
|
187
|
-
eventTypes?: Maybe<Array<Maybe<ActivityEventType>>>;
|
|
188
|
-
objectTypes?: Maybe<Array<Maybe<ActivityObjectType>>>;
|
|
189
|
-
transitions?: Maybe<Array<Maybe<ActivityTransition>>>;
|
|
190
|
-
containerIDs?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
191
|
-
from?: Maybe<Scalars['String']>;
|
|
192
|
-
to?: Maybe<Scalars['String']>;
|
|
193
|
-
earliestStart?: Maybe<Scalars['String']>;
|
|
194
|
-
latestStart?: Maybe<Scalars['String']>;
|
|
195
|
-
};
|
|
196
|
-
export declare type ActivityHistory = {
|
|
197
|
-
__typename?: 'ActivityHistory';
|
|
198
|
-
actioner?: Maybe<User>;
|
|
199
|
-
eventType?: Maybe<ActivityEventType>;
|
|
200
|
-
timestamp?: Maybe<Scalars['String']>;
|
|
201
|
-
};
|
|
202
|
-
export declare type ActivityHistoryConnection = {
|
|
203
|
-
__typename?: 'ActivityHistoryConnection';
|
|
204
|
-
nodes: Array<Maybe<ActivityHistory>>;
|
|
205
|
-
};
|
|
206
|
-
export declare type ActivityItem = Node & {
|
|
207
|
-
__typename?: 'ActivityItem';
|
|
208
|
-
id: Scalars['ID'];
|
|
209
|
-
timestamp?: Maybe<Scalars['String']>;
|
|
210
|
-
eventType?: Maybe<ActivityEventType>;
|
|
211
|
-
object?: Maybe<ActivityObject>;
|
|
212
|
-
containers?: Maybe<Array<Maybe<ActivityObject>>>;
|
|
213
|
-
contributors?: Maybe<Array<Maybe<ActivityContributor>>>;
|
|
214
|
-
};
|
|
215
|
-
export declare type ActivityObject = Node & {
|
|
216
|
-
__typename?: 'ActivityObject';
|
|
217
|
-
id: Scalars['ID'];
|
|
218
|
-
localResourceId: Scalars['ID'];
|
|
219
|
-
name?: Maybe<Scalars['String']>;
|
|
220
|
-
type?: Maybe<ActivityObjectType>;
|
|
221
|
-
product?: Maybe<ActivityProduct>;
|
|
222
|
-
cloudID?: Maybe<Scalars['String']>;
|
|
223
|
-
url?: Maybe<Scalars['String']>;
|
|
224
|
-
iconURL?: Maybe<Scalars['String']>;
|
|
225
|
-
history?: Maybe<ActivityHistoryConnection>;
|
|
226
|
-
};
|
|
227
|
-
export declare type ActivityObjectConnection = {
|
|
228
|
-
__typename?: 'ActivityObjectConnection';
|
|
229
|
-
nodes: Array<Maybe<ActivityObject>>;
|
|
230
|
-
};
|
|
231
174
|
export declare enum ActivityObjectType {
|
|
232
175
|
Site = "SITE",
|
|
233
176
|
Project = "PROJECT",
|
|
@@ -451,6 +394,7 @@ export declare type AppEnvironmentVersionEdge = {
|
|
|
451
394
|
};
|
|
452
395
|
export declare type AppHostService = {
|
|
453
396
|
__typename?: 'AppHostService';
|
|
397
|
+
serviceId: Scalars['ID'];
|
|
454
398
|
name: Scalars['String'];
|
|
455
399
|
description: Scalars['String'];
|
|
456
400
|
scopes?: Maybe<Array<AppHostServiceScope>>;
|
|
@@ -593,6 +537,7 @@ export declare type AppLog = FunctionInvocationMetadata & Node & {
|
|
|
593
537
|
installationContext?: Maybe<AppInstallationContext>;
|
|
594
538
|
function?: Maybe<FunctionDescription>;
|
|
595
539
|
trigger?: Maybe<FunctionTrigger>;
|
|
540
|
+
moduleType?: Maybe<Scalars['String']>;
|
|
596
541
|
startTime?: Maybe<Scalars['String']>;
|
|
597
542
|
appLogLines?: Maybe<AppLogLines>;
|
|
598
543
|
};
|
|
@@ -813,12 +758,36 @@ export declare type ApplyPolarisProjectTemplatePayload = Payload & {
|
|
|
813
758
|
};
|
|
814
759
|
export declare type AppsFilter = {
|
|
815
760
|
isPublishable?: Maybe<Scalars['Boolean']>;
|
|
761
|
+
migrationKey?: Maybe<Scalars['String']>;
|
|
816
762
|
};
|
|
817
763
|
export declare type ArchivePolarisInsightsPayload = Payload & {
|
|
818
764
|
__typename?: 'ArchivePolarisInsightsPayload';
|
|
819
765
|
success: Scalars['Boolean'];
|
|
820
766
|
errors?: Maybe<Array<MutationError>>;
|
|
821
767
|
};
|
|
768
|
+
export declare type ArjConfiguration = {
|
|
769
|
+
__typename?: 'ArjConfiguration';
|
|
770
|
+
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
771
|
+
epicLinkCustomFieldId?: Maybe<Scalars['String']>;
|
|
772
|
+
};
|
|
773
|
+
export declare type ArjHierarchyConfigurationLevel = {
|
|
774
|
+
__typename?: 'ArjHierarchyConfigurationLevel';
|
|
775
|
+
issueTypes?: Maybe<Array<Scalars['String']>>;
|
|
776
|
+
title: Scalars['String'];
|
|
777
|
+
};
|
|
778
|
+
export declare type AssignIssueParentInput = {
|
|
779
|
+
boardId: Scalars['ID'];
|
|
780
|
+
issueIds: Array<Scalars['ID']>;
|
|
781
|
+
issueParentId: Scalars['ID'];
|
|
782
|
+
};
|
|
783
|
+
export declare type AssignIssueParentOutput = MutationResponse & {
|
|
784
|
+
__typename?: 'AssignIssueParentOutput';
|
|
785
|
+
boardScope?: Maybe<BoardScope>;
|
|
786
|
+
statusCode: Scalars['Int'];
|
|
787
|
+
success: Scalars['Boolean'];
|
|
788
|
+
message: Scalars['String'];
|
|
789
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
790
|
+
};
|
|
822
791
|
export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
823
792
|
__typename?: 'AtlassianAccountUser';
|
|
824
793
|
accountId: Scalars['ID'];
|
|
@@ -933,6 +902,9 @@ export declare type BacklogExtension = {
|
|
|
933
902
|
__typename?: 'BacklogExtension';
|
|
934
903
|
operations?: Maybe<Array<Maybe<SoftwareOperation>>>;
|
|
935
904
|
};
|
|
905
|
+
export declare enum BitbucketPermission {
|
|
906
|
+
Admin = "ADMIN"
|
|
907
|
+
}
|
|
936
908
|
export declare type BitbucketQuery = {
|
|
937
909
|
__typename?: 'BitbucketQuery';
|
|
938
910
|
bitbucketRepository?: Maybe<BitbucketRepository>;
|
|
@@ -1001,6 +973,14 @@ export declare type BitbucketWorkspace = Node & {
|
|
|
1001
973
|
export declare type BitbucketWorkspaceRepositoriesArgs = {
|
|
1002
974
|
first?: Maybe<Scalars['Int']>;
|
|
1003
975
|
after?: Maybe<Scalars['String']>;
|
|
976
|
+
permissionFilter?: Maybe<BitbucketPermission>;
|
|
977
|
+
};
|
|
978
|
+
export declare type BoardCardMoveInput = {
|
|
979
|
+
boardId?: Maybe<Scalars['ID']>;
|
|
980
|
+
cardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
981
|
+
swimlaneId?: Maybe<Scalars['ID']>;
|
|
982
|
+
transition?: Maybe<Scalars['ID']>;
|
|
983
|
+
rank?: Maybe<CardRank>;
|
|
1004
984
|
};
|
|
1005
985
|
export declare type BoardEditConfig = {
|
|
1006
986
|
__typename?: 'BoardEditConfig';
|
|
@@ -1076,6 +1056,7 @@ export declare type BoardScope = {
|
|
|
1076
1056
|
currentUser: CurrentUser;
|
|
1077
1057
|
sprint?: Maybe<Sprint>;
|
|
1078
1058
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1059
|
+
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1079
1060
|
};
|
|
1080
1061
|
export declare type BoardScopeSprintsArgs = {
|
|
1081
1062
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1086,12 +1067,32 @@ export declare type BoardScopeCardsArgs = {
|
|
|
1086
1067
|
export declare type BoardScopeSprintArgs = {
|
|
1087
1068
|
sprintId: Scalars['ID'];
|
|
1088
1069
|
};
|
|
1070
|
+
export declare type BoardScopeFilteredCardIdsArgs = {
|
|
1071
|
+
issueIds: Array<Maybe<Scalars['ID']>>;
|
|
1072
|
+
customFilterIds: Array<Maybe<Scalars['ID']>>;
|
|
1073
|
+
};
|
|
1089
1074
|
export declare enum BuiltinPolarisIdeaField {
|
|
1075
|
+
Assignee = "ASSIGNEE",
|
|
1076
|
+
Created = "CREATED",
|
|
1077
|
+
Creator = "CREATOR",
|
|
1078
|
+
Description = "DESCRIPTION",
|
|
1079
|
+
IssueId = "ISSUE_ID",
|
|
1080
|
+
IssueType = "ISSUE_TYPE",
|
|
1090
1081
|
Key = "KEY",
|
|
1082
|
+
Labels = "LABELS",
|
|
1083
|
+
Reporter = "REPORTER",
|
|
1084
|
+
Status = "STATUS",
|
|
1091
1085
|
Summary = "SUMMARY",
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1086
|
+
Updated = "UPDATED",
|
|
1087
|
+
Votes = "VOTES",
|
|
1088
|
+
Archived = "ARCHIVED",
|
|
1089
|
+
ArchivedBy = "ARCHIVED_BY",
|
|
1090
|
+
ArchivedOn = "ARCHIVED_ON",
|
|
1091
|
+
DeliveryProgress = "DELIVERY_PROGRESS",
|
|
1092
|
+
DeliveryStatus = "DELIVERY_STATUS",
|
|
1093
|
+
IssueComments = "ISSUE_COMMENTS",
|
|
1094
|
+
LinkedIssues = "LINKED_ISSUES",
|
|
1095
|
+
NumDataPoints = "NUM_DATA_POINTS"
|
|
1095
1096
|
}
|
|
1096
1097
|
export declare type BurndownChart = {
|
|
1097
1098
|
__typename?: 'BurndownChart';
|
|
@@ -1200,12 +1201,20 @@ export declare type CardParent = {
|
|
|
1200
1201
|
summary: Scalars['String'];
|
|
1201
1202
|
cardType: CardType;
|
|
1202
1203
|
color?: Maybe<Scalars['CardPaletteColor']>;
|
|
1204
|
+
status?: Maybe<CardStatus>;
|
|
1205
|
+
childrenInfo?: Maybe<SoftwareCardChildrenInfo>;
|
|
1206
|
+
startDate?: Maybe<Scalars['String']>;
|
|
1207
|
+
dueDate?: Maybe<Scalars['String']>;
|
|
1203
1208
|
};
|
|
1204
1209
|
export declare type CardPriority = {
|
|
1205
1210
|
__typename?: 'CardPriority';
|
|
1206
1211
|
name?: Maybe<Scalars['String']>;
|
|
1207
1212
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1208
1213
|
};
|
|
1214
|
+
export declare type CardRank = {
|
|
1215
|
+
afterCardId?: Maybe<Scalars['ID']>;
|
|
1216
|
+
beforeCardId?: Maybe<Scalars['ID']>;
|
|
1217
|
+
};
|
|
1209
1218
|
export declare type CardStatus = {
|
|
1210
1219
|
__typename?: 'CardStatus';
|
|
1211
1220
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -1279,6 +1288,31 @@ export declare type ColumnStatus = {
|
|
|
1279
1288
|
__typename?: 'ColumnStatus';
|
|
1280
1289
|
transitions: Array<SoftwareCardTransition>;
|
|
1281
1290
|
status: CardStatus;
|
|
1291
|
+
cardTypeTransitions?: Maybe<Array<SoftwareCardTypeTransition>>;
|
|
1292
|
+
};
|
|
1293
|
+
export declare type CompassAcknowledgeAnnouncementInput = {
|
|
1294
|
+
announcementId: Scalars['ID'];
|
|
1295
|
+
componentId: Scalars['ID'];
|
|
1296
|
+
};
|
|
1297
|
+
export declare type CompassAcknowledgeAnnouncementPayload = Payload & {
|
|
1298
|
+
__typename?: 'CompassAcknowledgeAnnouncementPayload';
|
|
1299
|
+
acknowledgement?: Maybe<CompassAnnouncementAcknowledgement>;
|
|
1300
|
+
success: Scalars['Boolean'];
|
|
1301
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1302
|
+
};
|
|
1303
|
+
export declare type CompassAnnouncement = {
|
|
1304
|
+
__typename?: 'CompassAnnouncement';
|
|
1305
|
+
id: Scalars['ID'];
|
|
1306
|
+
component?: Maybe<CompassComponent>;
|
|
1307
|
+
title?: Maybe<Scalars['String']>;
|
|
1308
|
+
description?: Maybe<Scalars['String']>;
|
|
1309
|
+
targetDate?: Maybe<Scalars['DateTime']>;
|
|
1310
|
+
acknowledgements?: Maybe<Array<CompassAnnouncementAcknowledgement>>;
|
|
1311
|
+
};
|
|
1312
|
+
export declare type CompassAnnouncementAcknowledgement = {
|
|
1313
|
+
__typename?: 'CompassAnnouncementAcknowledgement';
|
|
1314
|
+
component?: Maybe<CompassComponent>;
|
|
1315
|
+
hasAcknowledged?: Maybe<Scalars['Boolean']>;
|
|
1282
1316
|
};
|
|
1283
1317
|
export declare type CompassCatalogMutationApi = {
|
|
1284
1318
|
__typename?: 'CompassCatalogMutationApi';
|
|
@@ -1306,11 +1340,20 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1306
1340
|
createScorecardCriterias?: Maybe<CreateCompassScorecardCriteriasPayload>;
|
|
1307
1341
|
updateScorecardCriterias?: Maybe<UpdateCompassScorecardCriteriasPayload>;
|
|
1308
1342
|
deleteScorecardCriterias?: Maybe<DeleteCompassScorecardCriteriasPayload>;
|
|
1343
|
+
createAnnouncement?: Maybe<CompassCreateAnnouncementPayload>;
|
|
1344
|
+
updateAnnouncement?: Maybe<CompassUpdateAnnouncementPayload>;
|
|
1345
|
+
deleteAnnouncement?: Maybe<CompassDeleteAnnouncementPayload>;
|
|
1346
|
+
acknowledgeAnnouncement?: Maybe<CompassAcknowledgeAnnouncementPayload>;
|
|
1309
1347
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
1310
1348
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
1311
|
-
|
|
1349
|
+
createDeploymentEvent?: Maybe<CreateDeploymentEventsPayload>;
|
|
1312
1350
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
1313
1351
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
1352
|
+
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
1353
|
+
deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
|
|
1354
|
+
createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
|
|
1355
|
+
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
1356
|
+
deleteTeamCheckin?: Maybe<CompassDeleteTeamCheckinPayload>;
|
|
1314
1357
|
};
|
|
1315
1358
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1316
1359
|
cloudId: Scalars['ID'];
|
|
@@ -1392,15 +1435,26 @@ export declare type CompassCatalogMutationApiDeleteScorecardCriteriasArgs = {
|
|
|
1392
1435
|
scorecardId: Scalars['ID'];
|
|
1393
1436
|
input: DeleteCompassScorecardCriteriasInput;
|
|
1394
1437
|
};
|
|
1438
|
+
export declare type CompassCatalogMutationApiCreateAnnouncementArgs = {
|
|
1439
|
+
input: CompassCreateAnnouncementInput;
|
|
1440
|
+
};
|
|
1441
|
+
export declare type CompassCatalogMutationApiUpdateAnnouncementArgs = {
|
|
1442
|
+
input: CompassUpdateAnnouncementInput;
|
|
1443
|
+
};
|
|
1444
|
+
export declare type CompassCatalogMutationApiDeleteAnnouncementArgs = {
|
|
1445
|
+
input: CompassDeleteAnnouncementInput;
|
|
1446
|
+
};
|
|
1447
|
+
export declare type CompassCatalogMutationApiAcknowledgeAnnouncementArgs = {
|
|
1448
|
+
input: CompassAcknowledgeAnnouncementInput;
|
|
1449
|
+
};
|
|
1395
1450
|
export declare type CompassCatalogMutationApiCreateEventSourceArgs = {
|
|
1396
1451
|
input: CreateEventSourceInput;
|
|
1397
1452
|
};
|
|
1398
1453
|
export declare type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
1399
1454
|
input: DeleteEventSourceInput;
|
|
1400
1455
|
};
|
|
1401
|
-
export declare type
|
|
1402
|
-
input
|
|
1403
|
-
externalEventSourceId: Scalars['String'];
|
|
1456
|
+
export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
|
|
1457
|
+
input: CreateDeploymentEventInput;
|
|
1404
1458
|
};
|
|
1405
1459
|
export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
1406
1460
|
input: AttachEventSourceInput;
|
|
@@ -1408,14 +1462,34 @@ export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
|
1408
1462
|
export declare type CompassCatalogMutationApiDetachEventSourceArgs = {
|
|
1409
1463
|
input: DetachEventSourceInput;
|
|
1410
1464
|
};
|
|
1465
|
+
export declare type CompassCatalogMutationApiCreateStarredComponentArgs = {
|
|
1466
|
+
cloudId: Scalars['ID'];
|
|
1467
|
+
input: CreateCompassStarredComponentInput;
|
|
1468
|
+
};
|
|
1469
|
+
export declare type CompassCatalogMutationApiDeleteStarredComponentArgs = {
|
|
1470
|
+
cloudId: Scalars['ID'];
|
|
1471
|
+
input: DeleteCompassStarredComponentInput;
|
|
1472
|
+
};
|
|
1473
|
+
export declare type CompassCatalogMutationApiCreateTeamCheckinArgs = {
|
|
1474
|
+
input: CompassCreateTeamCheckinInput;
|
|
1475
|
+
};
|
|
1476
|
+
export declare type CompassCatalogMutationApiUpdateTeamCheckinArgs = {
|
|
1477
|
+
input: CompassUpdateTeamCheckinInput;
|
|
1478
|
+
};
|
|
1479
|
+
export declare type CompassCatalogMutationApiDeleteTeamCheckinArgs = {
|
|
1480
|
+
input: CompassDeleteTeamCheckinInput;
|
|
1481
|
+
};
|
|
1411
1482
|
export declare type CompassCatalogQueryApi = {
|
|
1412
1483
|
__typename?: 'CompassCatalogQueryApi';
|
|
1413
1484
|
component?: Maybe<CompassComponentResult>;
|
|
1414
1485
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
1415
1486
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
1416
1487
|
searchComponents?: Maybe<CompassComponentQueryResult>;
|
|
1488
|
+
searchComponentLabels?: Maybe<CompassComponentLabelsQueryResult>;
|
|
1417
1489
|
scorecard?: Maybe<CompassScorecardResult>;
|
|
1418
1490
|
scorecards?: Maybe<CompassScorecardsQueryResult>;
|
|
1491
|
+
starredComponents?: Maybe<CompassStarredComponentQueryResult>;
|
|
1492
|
+
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1419
1493
|
};
|
|
1420
1494
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1421
1495
|
id: Scalars['ID'];
|
|
@@ -1433,6 +1507,10 @@ export declare type CompassCatalogQueryApiSearchComponentsArgs = {
|
|
|
1433
1507
|
cloudId: Scalars['String'];
|
|
1434
1508
|
query?: Maybe<CompassSearchComponentQuery>;
|
|
1435
1509
|
};
|
|
1510
|
+
export declare type CompassCatalogQueryApiSearchComponentLabelsArgs = {
|
|
1511
|
+
cloudId: Scalars['String'];
|
|
1512
|
+
query?: Maybe<CompassSearchComponentLabelsQuery>;
|
|
1513
|
+
};
|
|
1436
1514
|
export declare type CompassCatalogQueryApiScorecardArgs = {
|
|
1437
1515
|
id: Scalars['ID'];
|
|
1438
1516
|
};
|
|
@@ -1440,6 +1518,13 @@ export declare type CompassCatalogQueryApiScorecardsArgs = {
|
|
|
1440
1518
|
cloudId: Scalars['ID'];
|
|
1441
1519
|
query?: Maybe<CompassScorecardsQuery>;
|
|
1442
1520
|
};
|
|
1521
|
+
export declare type CompassCatalogQueryApiStarredComponentsArgs = {
|
|
1522
|
+
cloudId: Scalars['ID'];
|
|
1523
|
+
query?: Maybe<CompassStarredComponentQuery>;
|
|
1524
|
+
};
|
|
1525
|
+
export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
1526
|
+
input: CompassTeamCheckinsInput;
|
|
1527
|
+
};
|
|
1443
1528
|
export declare type CompassChangeMetadata = {
|
|
1444
1529
|
__typename?: 'CompassChangeMetadata';
|
|
1445
1530
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1464,7 +1549,10 @@ export declare type CompassComponent = Node & {
|
|
|
1464
1549
|
scorecards?: Maybe<Array<CompassScorecard>>;
|
|
1465
1550
|
scorecardScores?: Maybe<Array<CompassScorecardScore>>;
|
|
1466
1551
|
applicableScorecards?: Maybe<Array<CompassScorecard>>;
|
|
1552
|
+
announcements?: Maybe<Array<CompassAnnouncement>>;
|
|
1467
1553
|
events?: Maybe<CompassEventsQueryResult>;
|
|
1554
|
+
eventSources?: Maybe<Array<EventSource>>;
|
|
1555
|
+
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1468
1556
|
};
|
|
1469
1557
|
export declare type CompassComponentRelationshipsArgs = {
|
|
1470
1558
|
query?: Maybe<CompassRelationshipQuery>;
|
|
@@ -1472,6 +1560,9 @@ export declare type CompassComponentRelationshipsArgs = {
|
|
|
1472
1560
|
export declare type CompassComponentEventsArgs = {
|
|
1473
1561
|
query?: Maybe<CompassEventsQuery>;
|
|
1474
1562
|
};
|
|
1563
|
+
export declare type CompassComponentScorecardScoreArgs = {
|
|
1564
|
+
query?: Maybe<CompassComponentScorecardScoreQuery>;
|
|
1565
|
+
};
|
|
1475
1566
|
export declare type CompassComponentDataManager = {
|
|
1476
1567
|
__typename?: 'CompassComponentDataManager';
|
|
1477
1568
|
ecosystemAppId: Scalars['ID'];
|
|
@@ -1482,14 +1573,64 @@ export declare type CompassComponentLabel = {
|
|
|
1482
1573
|
__typename?: 'CompassComponentLabel';
|
|
1483
1574
|
name?: Maybe<Scalars['String']>;
|
|
1484
1575
|
};
|
|
1576
|
+
export declare type CompassComponentLabelsQueryResult = CompassSearchComponentLabelsConnection | QueryError;
|
|
1485
1577
|
export declare type CompassComponentQueryResult = CompassSearchComponentConnection | QueryError;
|
|
1486
1578
|
export declare type CompassComponentResult = CompassComponent | QueryError;
|
|
1579
|
+
export declare type CompassComponentScorecardScoreQuery = {
|
|
1580
|
+
scorecardId: Scalars['ID'];
|
|
1581
|
+
};
|
|
1487
1582
|
export declare enum CompassComponentType {
|
|
1488
1583
|
Application = "APPLICATION",
|
|
1489
1584
|
Library = "LIBRARY",
|
|
1490
1585
|
Service = "SERVICE",
|
|
1491
1586
|
Other = "OTHER"
|
|
1492
1587
|
}
|
|
1588
|
+
export declare type CompassCreateAnnouncementInput = {
|
|
1589
|
+
componentId: Scalars['ID'];
|
|
1590
|
+
title: Scalars['String'];
|
|
1591
|
+
description?: Maybe<Scalars['String']>;
|
|
1592
|
+
targetDate: Scalars['DateTime'];
|
|
1593
|
+
};
|
|
1594
|
+
export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
1595
|
+
__typename?: 'CompassCreateAnnouncementPayload';
|
|
1596
|
+
createdAnnouncement?: Maybe<CompassAnnouncement>;
|
|
1597
|
+
success: Scalars['Boolean'];
|
|
1598
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1599
|
+
};
|
|
1600
|
+
export declare type CompassCreateTeamCheckinInput = {
|
|
1601
|
+
cloudId: Scalars['ID'];
|
|
1602
|
+
teamId: Scalars['ID'];
|
|
1603
|
+
mood: Scalars['Int'];
|
|
1604
|
+
response1?: Maybe<Scalars['String']>;
|
|
1605
|
+
response2?: Maybe<Scalars['String']>;
|
|
1606
|
+
response3?: Maybe<Scalars['String']>;
|
|
1607
|
+
};
|
|
1608
|
+
export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
1609
|
+
__typename?: 'CompassCreateTeamCheckinPayload';
|
|
1610
|
+
success: Scalars['Boolean'];
|
|
1611
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1612
|
+
createdTeamCheckin?: Maybe<CompassTeamCheckin>;
|
|
1613
|
+
};
|
|
1614
|
+
export declare type CompassDeleteAnnouncementInput = {
|
|
1615
|
+
cloudId: Scalars['ID'];
|
|
1616
|
+
id: Scalars['ID'];
|
|
1617
|
+
};
|
|
1618
|
+
export declare type CompassDeleteAnnouncementPayload = Payload & {
|
|
1619
|
+
__typename?: 'CompassDeleteAnnouncementPayload';
|
|
1620
|
+
deletedAnnouncementId?: Maybe<Scalars['ID']>;
|
|
1621
|
+
success: Scalars['Boolean'];
|
|
1622
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1623
|
+
};
|
|
1624
|
+
export declare type CompassDeleteTeamCheckinInput = {
|
|
1625
|
+
cloudId: Scalars['ID'];
|
|
1626
|
+
id: Scalars['ID'];
|
|
1627
|
+
};
|
|
1628
|
+
export declare type CompassDeleteTeamCheckinPayload = Payload & {
|
|
1629
|
+
__typename?: 'CompassDeleteTeamCheckinPayload';
|
|
1630
|
+
success: Scalars['Boolean'];
|
|
1631
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1632
|
+
deletedTeamCheckinId?: Maybe<Scalars['ID']>;
|
|
1633
|
+
};
|
|
1493
1634
|
export declare type CompassDeploymentEvent = CompassEvent & {
|
|
1494
1635
|
__typename?: 'CompassDeploymentEvent';
|
|
1495
1636
|
eventType: CompassEventType;
|
|
@@ -1507,6 +1648,7 @@ export declare type CompassDeploymentEventEnvironment = {
|
|
|
1507
1648
|
__typename?: 'CompassDeploymentEventEnvironment';
|
|
1508
1649
|
category?: Maybe<CompassDeploymentEventEnvironmentCategory>;
|
|
1509
1650
|
displayName?: Maybe<Scalars['String']>;
|
|
1651
|
+
environmentId?: Maybe<Scalars['String']>;
|
|
1510
1652
|
};
|
|
1511
1653
|
export declare enum CompassDeploymentEventEnvironmentCategory {
|
|
1512
1654
|
Production = "PRODUCTION",
|
|
@@ -1518,6 +1660,7 @@ export declare enum CompassDeploymentEventEnvironmentCategory {
|
|
|
1518
1660
|
export declare type CompassDeploymentEventEnvironmentInput = {
|
|
1519
1661
|
category: CompassDeploymentEventEnvironmentCategory;
|
|
1520
1662
|
displayName: Scalars['String'];
|
|
1663
|
+
environmentId: Scalars['String'];
|
|
1521
1664
|
};
|
|
1522
1665
|
export declare type CompassDeploymentEventPipeline = {
|
|
1523
1666
|
__typename?: 'CompassDeploymentEventPipeline';
|
|
@@ -1561,9 +1704,15 @@ export declare type CompassEvent = {
|
|
|
1561
1704
|
};
|
|
1562
1705
|
export declare type CompassEventConnection = {
|
|
1563
1706
|
__typename?: 'CompassEventConnection';
|
|
1707
|
+
edges?: Maybe<Array<Maybe<CompassEventEdge>>>;
|
|
1564
1708
|
nodes?: Maybe<Array<CompassEvent>>;
|
|
1565
1709
|
pageInfo: PageInfo;
|
|
1566
1710
|
};
|
|
1711
|
+
export declare type CompassEventEdge = {
|
|
1712
|
+
__typename?: 'CompassEventEdge';
|
|
1713
|
+
cursor: Scalars['String'];
|
|
1714
|
+
node?: Maybe<CompassEvent>;
|
|
1715
|
+
};
|
|
1567
1716
|
export declare type CompassEventTimeParameters = {
|
|
1568
1717
|
startFrom?: Maybe<Scalars['DateTime']>;
|
|
1569
1718
|
endAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1724,11 +1873,31 @@ export declare type CompassScorecard = Node & {
|
|
|
1724
1873
|
componentType: CompassComponentType;
|
|
1725
1874
|
importance: CompassScorecardImportance;
|
|
1726
1875
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
1876
|
+
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
1727
1877
|
changeMetadata: CompassChangeMetadata;
|
|
1728
1878
|
};
|
|
1729
1879
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
1730
1880
|
query?: Maybe<CompassScorecardScoreQuery>;
|
|
1731
1881
|
};
|
|
1882
|
+
export declare type CompassScorecardAppliedToComponentsArgs = {
|
|
1883
|
+
query?: Maybe<CompassScorecardAppliedToComponentsQuery>;
|
|
1884
|
+
};
|
|
1885
|
+
export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
1886
|
+
__typename?: 'CompassScorecardAppliedToComponentsConnection';
|
|
1887
|
+
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
1888
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
1889
|
+
pageInfo: PageInfo;
|
|
1890
|
+
};
|
|
1891
|
+
export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
1892
|
+
__typename?: 'CompassScorecardAppliedToComponentsEdge';
|
|
1893
|
+
cursor: Scalars['String'];
|
|
1894
|
+
node?: Maybe<CompassComponent>;
|
|
1895
|
+
};
|
|
1896
|
+
export declare type CompassScorecardAppliedToComponentsQuery = {
|
|
1897
|
+
first?: Maybe<Scalars['Int']>;
|
|
1898
|
+
after?: Maybe<Scalars['String']>;
|
|
1899
|
+
};
|
|
1900
|
+
export declare type CompassScorecardAppliedToComponentsQueryResult = CompassScorecardAppliedToComponentsConnection | QueryError;
|
|
1732
1901
|
export declare type CompassScorecardConnection = {
|
|
1733
1902
|
__typename?: 'CompassScorecardConnection';
|
|
1734
1903
|
edges?: Maybe<Array<CompassScorecardEdge>>;
|
|
@@ -1789,6 +1958,23 @@ export declare type CompassSearchComponentEdge = {
|
|
|
1789
1958
|
cursor: Scalars['String'];
|
|
1790
1959
|
node?: Maybe<CompassSearchComponentResult>;
|
|
1791
1960
|
};
|
|
1961
|
+
export declare type CompassSearchComponentLabelsConnection = {
|
|
1962
|
+
__typename?: 'CompassSearchComponentLabelsConnection';
|
|
1963
|
+
edges?: Maybe<Array<CompassSearchComponentLabelsEdge>>;
|
|
1964
|
+
nodes?: Maybe<Array<CompassComponentLabel>>;
|
|
1965
|
+
pageInfo: PageInfo;
|
|
1966
|
+
};
|
|
1967
|
+
export declare type CompassSearchComponentLabelsEdge = {
|
|
1968
|
+
__typename?: 'CompassSearchComponentLabelsEdge';
|
|
1969
|
+
cursor: Scalars['String'];
|
|
1970
|
+
node?: Maybe<CompassComponentLabel>;
|
|
1971
|
+
};
|
|
1972
|
+
export declare type CompassSearchComponentLabelsQuery = {
|
|
1973
|
+
query?: Maybe<Scalars['String']>;
|
|
1974
|
+
first?: Maybe<Scalars['Int']>;
|
|
1975
|
+
after?: Maybe<Scalars['String']>;
|
|
1976
|
+
sort?: Maybe<Array<Maybe<CompassQuerySort>>>;
|
|
1977
|
+
};
|
|
1792
1978
|
export declare type CompassSearchComponentQuery = {
|
|
1793
1979
|
query?: Maybe<Scalars['String']>;
|
|
1794
1980
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -1801,6 +1987,64 @@ export declare type CompassSearchComponentResult = {
|
|
|
1801
1987
|
component?: Maybe<CompassComponent>;
|
|
1802
1988
|
link: Scalars['URL'];
|
|
1803
1989
|
};
|
|
1990
|
+
export declare type CompassStarredComponentConnection = {
|
|
1991
|
+
__typename?: 'CompassStarredComponentConnection';
|
|
1992
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
1993
|
+
edges?: Maybe<Array<CompassStarredComponentEdge>>;
|
|
1994
|
+
pageInfo: PageInfo;
|
|
1995
|
+
};
|
|
1996
|
+
export declare type CompassStarredComponentEdge = {
|
|
1997
|
+
__typename?: 'CompassStarredComponentEdge';
|
|
1998
|
+
cursor: Scalars['String'];
|
|
1999
|
+
node?: Maybe<CompassComponent>;
|
|
2000
|
+
};
|
|
2001
|
+
export declare type CompassStarredComponentQuery = {
|
|
2002
|
+
first?: Maybe<Scalars['Int']>;
|
|
2003
|
+
after?: Maybe<Scalars['String']>;
|
|
2004
|
+
};
|
|
2005
|
+
export declare type CompassStarredComponentQueryResult = CompassStarredComponentConnection | QueryError;
|
|
2006
|
+
export declare type CompassTeamCheckin = {
|
|
2007
|
+
__typename?: 'CompassTeamCheckin';
|
|
2008
|
+
teamId?: Maybe<Scalars['ID']>;
|
|
2009
|
+
id: Scalars['ID'];
|
|
2010
|
+
mood?: Maybe<Scalars['Int']>;
|
|
2011
|
+
response1?: Maybe<Scalars['String']>;
|
|
2012
|
+
response2?: Maybe<Scalars['String']>;
|
|
2013
|
+
response3?: Maybe<Scalars['String']>;
|
|
2014
|
+
changeMetadata: CompassChangeMetadata;
|
|
2015
|
+
};
|
|
2016
|
+
export declare type CompassTeamCheckinsInput = {
|
|
2017
|
+
cloudId: Scalars['ID'];
|
|
2018
|
+
teamId: Scalars['ID'];
|
|
2019
|
+
};
|
|
2020
|
+
export declare type CompassUpdateAnnouncementInput = {
|
|
2021
|
+
cloudId: Scalars['ID'];
|
|
2022
|
+
id: Scalars['ID'];
|
|
2023
|
+
title?: Maybe<Scalars['String']>;
|
|
2024
|
+
description?: Maybe<Scalars['String']>;
|
|
2025
|
+
targetDate?: Maybe<Scalars['DateTime']>;
|
|
2026
|
+
clearAcknowledgements?: Maybe<Scalars['Boolean']>;
|
|
2027
|
+
};
|
|
2028
|
+
export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
2029
|
+
__typename?: 'CompassUpdateAnnouncementPayload';
|
|
2030
|
+
updatedAnnouncement?: Maybe<CompassAnnouncement>;
|
|
2031
|
+
success: Scalars['Boolean'];
|
|
2032
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2033
|
+
};
|
|
2034
|
+
export declare type CompassUpdateTeamCheckinInput = {
|
|
2035
|
+
cloudId: Scalars['ID'];
|
|
2036
|
+
id: Scalars['ID'];
|
|
2037
|
+
mood: Scalars['Int'];
|
|
2038
|
+
response1?: Maybe<Scalars['String']>;
|
|
2039
|
+
response2?: Maybe<Scalars['String']>;
|
|
2040
|
+
response3?: Maybe<Scalars['String']>;
|
|
2041
|
+
};
|
|
2042
|
+
export declare type CompassUpdateTeamCheckinPayload = Payload & {
|
|
2043
|
+
__typename?: 'CompassUpdateTeamCheckinPayload';
|
|
2044
|
+
success: Scalars['Boolean'];
|
|
2045
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2046
|
+
updatedTeamCheckin?: Maybe<CompassTeamCheckin>;
|
|
2047
|
+
};
|
|
1804
2048
|
export declare type CompatibleAtlassianCloudProduct = CompatibleAtlassianProduct & {
|
|
1805
2049
|
__typename?: 'CompatibleAtlassianCloudProduct';
|
|
1806
2050
|
id: Scalars['ID'];
|
|
@@ -2059,6 +2303,15 @@ export declare type CreateCompassScorecardPayload = Payload & {
|
|
|
2059
2303
|
errors?: Maybe<Array<MutationError>>;
|
|
2060
2304
|
scorecardDetails?: Maybe<CompassScorecard>;
|
|
2061
2305
|
};
|
|
2306
|
+
export declare type CreateCompassStarredComponentInput = {
|
|
2307
|
+
id: Scalars['ID'];
|
|
2308
|
+
};
|
|
2309
|
+
export declare type CreateCompassStarredComponentPayload = Payload & {
|
|
2310
|
+
__typename?: 'CreateCompassStarredComponentPayload';
|
|
2311
|
+
components?: Maybe<CompassStarredComponentConnection>;
|
|
2312
|
+
success: Scalars['Boolean'];
|
|
2313
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2314
|
+
};
|
|
2062
2315
|
export declare type CreateCustomFilterInput = {
|
|
2063
2316
|
boardId: Scalars['ID'];
|
|
2064
2317
|
name: Scalars['String'];
|
|
@@ -2066,6 +2319,7 @@ export declare type CreateCustomFilterInput = {
|
|
|
2066
2319
|
description?: Maybe<Scalars['String']>;
|
|
2067
2320
|
};
|
|
2068
2321
|
export declare type CreateDeploymentEventInput = {
|
|
2322
|
+
cloudId: Scalars['ID'];
|
|
2069
2323
|
deploymentSequenceNumber: Scalars['Long'];
|
|
2070
2324
|
updateSequenceNumber: Scalars['Long'];
|
|
2071
2325
|
displayName: Scalars['String'];
|
|
@@ -2154,7 +2408,7 @@ export declare type CreateEventSourceInput = {
|
|
|
2154
2408
|
};
|
|
2155
2409
|
export declare type CreateEventSourcePayload = Payload & {
|
|
2156
2410
|
__typename?: 'CreateEventSourcePayload';
|
|
2157
|
-
|
|
2411
|
+
eventSource?: Maybe<EventSource>;
|
|
2158
2412
|
success: Scalars['Boolean'];
|
|
2159
2413
|
errors?: Maybe<Array<MutationError>>;
|
|
2160
2414
|
};
|
|
@@ -2235,6 +2489,10 @@ export declare type CreatePolarisDecorationPayload = Payload & {
|
|
|
2235
2489
|
errors?: Maybe<Array<MutationError>>;
|
|
2236
2490
|
node?: Maybe<PolarisDecoration>;
|
|
2237
2491
|
};
|
|
2492
|
+
export declare type CreatePolarisInsightFromPlayContributionInput = {
|
|
2493
|
+
contribution: Scalars['ID'];
|
|
2494
|
+
subject?: Maybe<Scalars['ID']>;
|
|
2495
|
+
};
|
|
2238
2496
|
export declare type CreatePolarisInsightInput = {
|
|
2239
2497
|
cloudID: Scalars['String'];
|
|
2240
2498
|
projectID: Scalars['Int'];
|
|
@@ -2249,6 +2507,33 @@ export declare type CreatePolarisInsightPayload = Payload & {
|
|
|
2249
2507
|
errors?: Maybe<Array<MutationError>>;
|
|
2250
2508
|
node?: Maybe<PolarisInsight>;
|
|
2251
2509
|
};
|
|
2510
|
+
export declare type CreatePolarisPlayContribution = {
|
|
2511
|
+
play: Scalars['ID'];
|
|
2512
|
+
subject: Scalars['ID'];
|
|
2513
|
+
amount?: Maybe<Scalars['Int']>;
|
|
2514
|
+
comment?: Maybe<Scalars['JSON']>;
|
|
2515
|
+
};
|
|
2516
|
+
export declare type CreatePolarisPlayContributionPayload = {
|
|
2517
|
+
__typename?: 'CreatePolarisPlayContributionPayload';
|
|
2518
|
+
success: Scalars['Boolean'];
|
|
2519
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2520
|
+
node?: Maybe<PolarisPlayContribution>;
|
|
2521
|
+
};
|
|
2522
|
+
export declare type CreatePolarisPlayInput = {
|
|
2523
|
+
project: Scalars['ID'];
|
|
2524
|
+
kind: PolarisPlayKind;
|
|
2525
|
+
label: Scalars['String'];
|
|
2526
|
+
summary?: Maybe<Scalars['String']>;
|
|
2527
|
+
parameters?: Maybe<Scalars['JSON']>;
|
|
2528
|
+
fromView?: Maybe<Scalars['ID']>;
|
|
2529
|
+
description?: Maybe<Scalars['JSON']>;
|
|
2530
|
+
};
|
|
2531
|
+
export declare type CreatePolarisPlayPayload = {
|
|
2532
|
+
__typename?: 'CreatePolarisPlayPayload';
|
|
2533
|
+
success: Scalars['Boolean'];
|
|
2534
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2535
|
+
node?: Maybe<PolarisPlay>;
|
|
2536
|
+
};
|
|
2252
2537
|
export declare type CreatePolarisProjectInput = {
|
|
2253
2538
|
tenant: Scalars['ID'];
|
|
2254
2539
|
key: Scalars['String'];
|
|
@@ -2354,6 +2639,12 @@ export declare type CustomFilterCreateOutput = MutationResponse & {
|
|
|
2354
2639
|
success: Scalars['Boolean'];
|
|
2355
2640
|
message: Scalars['String'];
|
|
2356
2641
|
customFilter?: Maybe<CustomFilter>;
|
|
2642
|
+
validationErrors: Array<CustomFiltersValidationError>;
|
|
2643
|
+
};
|
|
2644
|
+
export declare type CustomFiltersValidationError = {
|
|
2645
|
+
__typename?: 'CustomFiltersValidationError';
|
|
2646
|
+
fieldName: Scalars['String'];
|
|
2647
|
+
errorMessage: Scalars['String'];
|
|
2357
2648
|
};
|
|
2358
2649
|
export declare type CustomUiTunnelDefinition = {
|
|
2359
2650
|
__typename?: 'CustomUITunnelDefinition';
|
|
@@ -2393,6 +2684,7 @@ export declare type DeleteAppResponse = Payload & {
|
|
|
2393
2684
|
export declare type DeleteAppStoredEntityMutationInput = {
|
|
2394
2685
|
key: Scalars['ID'];
|
|
2395
2686
|
contextAri: Scalars['ID'];
|
|
2687
|
+
encrypted?: Maybe<Scalars['Boolean']>;
|
|
2396
2688
|
};
|
|
2397
2689
|
export declare type DeleteAppStoredEntityPayload = Payload & {
|
|
2398
2690
|
__typename?: 'DeleteAppStoredEntityPayload';
|
|
@@ -2473,6 +2765,15 @@ export declare type DeleteCompassScorecardPayload = Payload & {
|
|
|
2473
2765
|
errors?: Maybe<Array<MutationError>>;
|
|
2474
2766
|
scorecardId: Scalars['ID'];
|
|
2475
2767
|
};
|
|
2768
|
+
export declare type DeleteCompassStarredComponentInput = {
|
|
2769
|
+
id: Scalars['ID'];
|
|
2770
|
+
};
|
|
2771
|
+
export declare type DeleteCompassStarredComponentPayload = Payload & {
|
|
2772
|
+
__typename?: 'DeleteCompassStarredComponentPayload';
|
|
2773
|
+
components?: Maybe<CompassStarredComponentConnection>;
|
|
2774
|
+
success: Scalars['Boolean'];
|
|
2775
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2776
|
+
};
|
|
2476
2777
|
export declare type DeleteCustomFilterInput = {
|
|
2477
2778
|
boardId: Scalars['ID'];
|
|
2478
2779
|
customFilterId: Scalars['String'];
|
|
@@ -2596,6 +2897,11 @@ export declare type DeletePolarisInsightPayload = Payload & {
|
|
|
2596
2897
|
success: Scalars['Boolean'];
|
|
2597
2898
|
errors?: Maybe<Array<MutationError>>;
|
|
2598
2899
|
};
|
|
2900
|
+
export declare type DeletePolarisPlayContributionPayload = {
|
|
2901
|
+
__typename?: 'DeletePolarisPlayContributionPayload';
|
|
2902
|
+
success: Scalars['Boolean'];
|
|
2903
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2904
|
+
};
|
|
2599
2905
|
export declare type DeletePolarisViewPayload = Payload & {
|
|
2600
2906
|
__typename?: 'DeletePolarisViewPayload';
|
|
2601
2907
|
success: Scalars['Boolean'];
|
|
@@ -2610,6 +2916,14 @@ export declare type DeleteSprintInput = {
|
|
|
2610
2916
|
boardId: Scalars['ID'];
|
|
2611
2917
|
sprintId: Scalars['ID'];
|
|
2612
2918
|
};
|
|
2919
|
+
export declare type DeleteUserGrantInput = {
|
|
2920
|
+
oauthClientId: Scalars['ID'];
|
|
2921
|
+
};
|
|
2922
|
+
export declare type DeleteUserGrantPayload = Payload & {
|
|
2923
|
+
__typename?: 'DeleteUserGrantPayload';
|
|
2924
|
+
success: Scalars['Boolean'];
|
|
2925
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2926
|
+
};
|
|
2613
2927
|
export declare type DeleteWebTriggerUrlResponse = MutationResponse & {
|
|
2614
2928
|
__typename?: 'DeleteWebTriggerUrlResponse';
|
|
2615
2929
|
statusCode: Scalars['Int'];
|
|
@@ -2634,6 +2948,7 @@ export declare type DeploymentSummary = Node & {
|
|
|
2634
2948
|
__typename?: 'DeploymentSummary';
|
|
2635
2949
|
id: Scalars['ID'];
|
|
2636
2950
|
issueIds?: Maybe<Array<Scalars['ID']>>;
|
|
2951
|
+
provider?: Maybe<DevOpsProvider>;
|
|
2637
2952
|
deploymentSequenceNumber?: Maybe<Scalars['Long']>;
|
|
2638
2953
|
updateSequenceNumber?: Maybe<Scalars['Long']>;
|
|
2639
2954
|
displayName?: Maybe<Scalars['String']>;
|
|
@@ -2861,6 +3176,18 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
2861
3176
|
type: DevOpsMetricsRollupOption;
|
|
2862
3177
|
percentile?: Maybe<Scalars['Int']>;
|
|
2863
3178
|
};
|
|
3179
|
+
export declare type DevOpsProvider = {
|
|
3180
|
+
__typename?: 'DevOpsProvider';
|
|
3181
|
+
name?: Maybe<Scalars['String']>;
|
|
3182
|
+
links?: Maybe<DevOpsProviderLinks>;
|
|
3183
|
+
logo?: Maybe<Scalars['URL']>;
|
|
3184
|
+
};
|
|
3185
|
+
export declare type DevOpsProviderLinks = {
|
|
3186
|
+
__typename?: 'DevOpsProviderLinks';
|
|
3187
|
+
documentation?: Maybe<Scalars['URL']>;
|
|
3188
|
+
home?: Maybe<Scalars['URL']>;
|
|
3189
|
+
listDeploymentsTemplate?: Maybe<Scalars['URL']>;
|
|
3190
|
+
};
|
|
2864
3191
|
export declare enum DevOpsRelationshipCertainty {
|
|
2865
3192
|
Explicit = "EXPLICIT",
|
|
2866
3193
|
Implicit = "IMPLICIT"
|
|
@@ -3129,6 +3456,11 @@ export declare enum DevStatusActivity {
|
|
|
3129
3456
|
BranchOpen = "BRANCH_OPEN",
|
|
3130
3457
|
Commit = "COMMIT"
|
|
3131
3458
|
}
|
|
3459
|
+
export declare type DeveloperLogAccessResult = {
|
|
3460
|
+
__typename?: 'DeveloperLogAccessResult';
|
|
3461
|
+
developerHasAccess: Scalars['Boolean'];
|
|
3462
|
+
contextId: Scalars['ID'];
|
|
3463
|
+
};
|
|
3132
3464
|
export declare type DvcsBitbucketWorkspaceConnection = {
|
|
3133
3465
|
__typename?: 'DvcsBitbucketWorkspaceConnection';
|
|
3134
3466
|
edges?: Maybe<Array<Maybe<DvcsBitbucketWorkspaceEdge>>>;
|
|
@@ -3149,13 +3481,34 @@ export declare type DvcsQueryBitbucketWorkspacesLinkedToSiteArgs = {
|
|
|
3149
3481
|
first?: Maybe<Scalars['Int']>;
|
|
3150
3482
|
after?: Maybe<Scalars['String']>;
|
|
3151
3483
|
};
|
|
3484
|
+
export declare type EcosystemMutation = {
|
|
3485
|
+
__typename?: 'EcosystemMutation';
|
|
3486
|
+
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
3487
|
+
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
3488
|
+
};
|
|
3489
|
+
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
3490
|
+
input: UpdateAppHostServiceScopesInput;
|
|
3491
|
+
};
|
|
3492
|
+
export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
3493
|
+
input: DeleteUserGrantInput;
|
|
3494
|
+
};
|
|
3495
|
+
export declare type EcosystemQuery = {
|
|
3496
|
+
__typename?: 'EcosystemQuery';
|
|
3497
|
+
userGrants?: Maybe<UserGrantConnection>;
|
|
3498
|
+
};
|
|
3499
|
+
export declare type EcosystemQueryUserGrantsArgs = {
|
|
3500
|
+
first?: Maybe<Scalars['Int']>;
|
|
3501
|
+
last?: Maybe<Scalars['Int']>;
|
|
3502
|
+
before?: Maybe<Scalars['String']>;
|
|
3503
|
+
after?: Maybe<Scalars['String']>;
|
|
3504
|
+
};
|
|
3152
3505
|
export declare type EditSprintInput = {
|
|
3153
3506
|
boardId: Scalars['ID'];
|
|
3154
3507
|
sprintId: Scalars['ID'];
|
|
3155
3508
|
name?: Maybe<Scalars['String']>;
|
|
3156
3509
|
goal?: Maybe<Scalars['String']>;
|
|
3157
|
-
startDate?: Maybe<Scalars['
|
|
3158
|
-
endDate?: Maybe<Scalars['
|
|
3510
|
+
startDate?: Maybe<Scalars['String']>;
|
|
3511
|
+
endDate?: Maybe<Scalars['String']>;
|
|
3159
3512
|
};
|
|
3160
3513
|
export declare enum EpicView {
|
|
3161
3514
|
All = "ALL",
|
|
@@ -3178,6 +3531,22 @@ export declare type EstimationConfig = {
|
|
|
3178
3531
|
current: CurrentEstimation;
|
|
3179
3532
|
available: Array<AvailableEstimations>;
|
|
3180
3533
|
};
|
|
3534
|
+
export declare enum EventKnownAvIs {
|
|
3535
|
+
AviJiraIssueCreated = "AVI_JIRA_ISSUE_CREATED",
|
|
3536
|
+
AviJiraIssueUpdated = "AVI_JIRA_ISSUE_UPDATED",
|
|
3537
|
+
AviBitbucketPrCreated = "AVI_BITBUCKET_PR_CREATED"
|
|
3538
|
+
}
|
|
3539
|
+
export declare enum EventMatchingStrategies {
|
|
3540
|
+
JiraByProject = "JIRA_BY_PROJECT",
|
|
3541
|
+
JiraByIssue = "JIRA_BY_ISSUE",
|
|
3542
|
+
BitbucketByRepo = "BITBUCKET_BY_REPO"
|
|
3543
|
+
}
|
|
3544
|
+
export declare type EventSource = {
|
|
3545
|
+
__typename?: 'EventSource';
|
|
3546
|
+
id: Scalars['ID'];
|
|
3547
|
+
externalEventSourceId: Scalars['ID'];
|
|
3548
|
+
eventType: CompassEventType;
|
|
3549
|
+
};
|
|
3181
3550
|
export declare type Extension = {
|
|
3182
3551
|
__typename?: 'Extension';
|
|
3183
3552
|
id: Scalars['ID'];
|
|
@@ -3243,6 +3612,7 @@ export declare type FunctionInvocationMetadata = {
|
|
|
3243
3612
|
installationContext?: Maybe<AppInstallationContext>;
|
|
3244
3613
|
function?: Maybe<FunctionDescription>;
|
|
3245
3614
|
trigger?: Maybe<FunctionTrigger>;
|
|
3615
|
+
moduleType?: Maybe<Scalars['String']>;
|
|
3246
3616
|
};
|
|
3247
3617
|
export declare type FunctionTrigger = {
|
|
3248
3618
|
__typename?: 'FunctionTrigger';
|
|
@@ -3294,6 +3664,11 @@ export declare type InlineColumnEditConfig = {
|
|
|
3294
3664
|
__typename?: 'InlineColumnEditConfig';
|
|
3295
3665
|
enabled: Scalars['Boolean'];
|
|
3296
3666
|
};
|
|
3667
|
+
export declare type InstallationContextWithLogAccess = {
|
|
3668
|
+
__typename?: 'InstallationContextWithLogAccess';
|
|
3669
|
+
installationContext: Scalars['ID'];
|
|
3670
|
+
tenantContext?: Maybe<TenantContext>;
|
|
3671
|
+
};
|
|
3297
3672
|
export declare type InvocationResponsePayload = {
|
|
3298
3673
|
__typename?: 'InvocationResponsePayload';
|
|
3299
3674
|
body: Scalars['JSON'];
|
|
@@ -3322,6 +3697,16 @@ export declare type InvokeExtensionInput = {
|
|
|
3322
3697
|
entryPoint?: Maybe<Scalars['String']>;
|
|
3323
3698
|
schema?: Maybe<Scalars['String']>;
|
|
3324
3699
|
};
|
|
3700
|
+
export declare type InvokeExtensionPayloadErrorExtension = MutationErrorExtension & {
|
|
3701
|
+
__typename?: 'InvokeExtensionPayloadErrorExtension';
|
|
3702
|
+
errorType?: Maybe<Scalars['String']>;
|
|
3703
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
3704
|
+
fields?: Maybe<InvokeExtensionPayloadErrorExtensionFields>;
|
|
3705
|
+
};
|
|
3706
|
+
export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
3707
|
+
__typename?: 'InvokeExtensionPayloadErrorExtensionFields';
|
|
3708
|
+
authInfoUrl?: Maybe<Scalars['String']>;
|
|
3709
|
+
};
|
|
3325
3710
|
export declare type InvokeExtensionResponse = MutationResponse & Payload & {
|
|
3326
3711
|
__typename?: 'InvokeExtensionResponse';
|
|
3327
3712
|
statusCode: Scalars['Int'];
|
|
@@ -3656,41 +4041,1717 @@ export declare type IssueDevOpsTestSummary = {
|
|
|
3656
4041
|
numberFailed?: Maybe<Scalars['Int']>;
|
|
3657
4042
|
numberSkipped?: Maybe<Scalars['Int']>;
|
|
3658
4043
|
};
|
|
3659
|
-
export declare type
|
|
3660
|
-
__typename?: '
|
|
3661
|
-
|
|
3662
|
-
small?: Maybe<Scalars['String']>;
|
|
3663
|
-
medium?: Maybe<Scalars['String']>;
|
|
3664
|
-
large?: Maybe<Scalars['String']>;
|
|
4044
|
+
export declare type JiraAdf = {
|
|
4045
|
+
__typename?: 'JiraADF';
|
|
4046
|
+
json?: Maybe<Scalars['JSON']>;
|
|
3665
4047
|
};
|
|
3666
|
-
export declare type
|
|
3667
|
-
__typename?: '
|
|
4048
|
+
export declare type JiraAffectedService = {
|
|
4049
|
+
__typename?: 'JiraAffectedService';
|
|
4050
|
+
serviceId?: Maybe<Scalars['String']>;
|
|
4051
|
+
};
|
|
4052
|
+
export declare type JiraAffectedServiceConnection = {
|
|
4053
|
+
__typename?: 'JiraAffectedServiceConnection';
|
|
4054
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4055
|
+
pageInfo: PageInfo;
|
|
4056
|
+
edges?: Maybe<Array<Maybe<JiraAffectedServiceEdge>>>;
|
|
4057
|
+
};
|
|
4058
|
+
export declare type JiraAffectedServiceEdge = {
|
|
4059
|
+
__typename?: 'JiraAffectedServiceEdge';
|
|
4060
|
+
node?: Maybe<JiraAffectedService>;
|
|
4061
|
+
cursor: Scalars['String'];
|
|
4062
|
+
};
|
|
4063
|
+
export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4064
|
+
__typename?: 'JiraAffectedServicesField';
|
|
4065
|
+
id: Scalars['ID'];
|
|
4066
|
+
fieldId: Scalars['String'];
|
|
4067
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4068
|
+
type: Scalars['String'];
|
|
4069
|
+
name: Scalars['String'];
|
|
4070
|
+
description?: Maybe<Scalars['String']>;
|
|
4071
|
+
selectedAffectedServices?: Maybe<Array<Maybe<JiraAffectedService>>>;
|
|
4072
|
+
affectedServices?: Maybe<JiraAffectedServiceConnection>;
|
|
4073
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4074
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4075
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4076
|
+
};
|
|
4077
|
+
export declare type JiraAffectedServicesFieldAffectedServicesArgs = {
|
|
4078
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4079
|
+
first?: Maybe<Scalars['Int']>;
|
|
4080
|
+
after?: Maybe<Scalars['String']>;
|
|
4081
|
+
last?: Maybe<Scalars['Int']>;
|
|
4082
|
+
before?: Maybe<Scalars['String']>;
|
|
4083
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
4084
|
+
};
|
|
4085
|
+
export declare type JiraAsset = {
|
|
4086
|
+
__typename?: 'JiraAsset';
|
|
4087
|
+
appKey?: Maybe<Scalars['String']>;
|
|
4088
|
+
originId?: Maybe<Scalars['String']>;
|
|
4089
|
+
serializedOrigin?: Maybe<Scalars['String']>;
|
|
4090
|
+
value?: Maybe<Scalars['String']>;
|
|
4091
|
+
};
|
|
4092
|
+
export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4093
|
+
__typename?: 'JiraAssetField';
|
|
3668
4094
|
id: Scalars['ID'];
|
|
4095
|
+
fieldId: Scalars['String'];
|
|
4096
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4097
|
+
type: Scalars['String'];
|
|
3669
4098
|
name: Scalars['String'];
|
|
3670
4099
|
description?: Maybe<Scalars['String']>;
|
|
4100
|
+
selectedAssets?: Maybe<Array<Maybe<JiraAsset>>>;
|
|
4101
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4102
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4103
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4104
|
+
};
|
|
4105
|
+
export declare type JiraAtlassianTeam = {
|
|
4106
|
+
__typename?: 'JiraAtlassianTeam';
|
|
4107
|
+
teamId?: Maybe<Scalars['String']>;
|
|
4108
|
+
name?: Maybe<Scalars['String']>;
|
|
3671
4109
|
avatar?: Maybe<JiraAvatar>;
|
|
3672
4110
|
};
|
|
3673
|
-
export declare type
|
|
3674
|
-
__typename?: '
|
|
3675
|
-
|
|
3676
|
-
|
|
4111
|
+
export declare type JiraAtlassianTeamConnection = {
|
|
4112
|
+
__typename?: 'JiraAtlassianTeamConnection';
|
|
4113
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4114
|
+
pageInfo: PageInfo;
|
|
4115
|
+
edges?: Maybe<Array<Maybe<JiraAtlassianTeamEdge>>>;
|
|
3677
4116
|
};
|
|
3678
|
-
export declare type
|
|
3679
|
-
__typename?: '
|
|
3680
|
-
node?: Maybe<
|
|
4117
|
+
export declare type JiraAtlassianTeamEdge = {
|
|
4118
|
+
__typename?: 'JiraAtlassianTeamEdge';
|
|
4119
|
+
node?: Maybe<JiraAtlassianTeam>;
|
|
3681
4120
|
cursor: Scalars['String'];
|
|
3682
4121
|
};
|
|
3683
|
-
export declare type
|
|
3684
|
-
__typename?: '
|
|
4122
|
+
export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4123
|
+
__typename?: 'JiraAtlassianTeamField';
|
|
3685
4124
|
id: Scalars['ID'];
|
|
3686
|
-
|
|
4125
|
+
fieldId: Scalars['String'];
|
|
4126
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4127
|
+
type: Scalars['String'];
|
|
3687
4128
|
name: Scalars['String'];
|
|
3688
|
-
cloudId: Scalars['ID'];
|
|
3689
4129
|
description?: Maybe<Scalars['String']>;
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
4130
|
+
selectedTeam?: Maybe<JiraAtlassianTeam>;
|
|
4131
|
+
teams?: Maybe<JiraAtlassianTeamConnection>;
|
|
4132
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4133
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4134
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4135
|
+
};
|
|
4136
|
+
export declare type JiraAtlassianTeamFieldTeamsArgs = {
|
|
4137
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4138
|
+
first?: Maybe<Scalars['Int']>;
|
|
4139
|
+
after?: Maybe<Scalars['String']>;
|
|
4140
|
+
last?: Maybe<Scalars['Int']>;
|
|
4141
|
+
before?: Maybe<Scalars['String']>;
|
|
4142
|
+
};
|
|
4143
|
+
export declare type JiraAttachment = {
|
|
4144
|
+
__typename?: 'JiraAttachment';
|
|
4145
|
+
id: Scalars['ID'];
|
|
4146
|
+
mediaApiFileId?: Maybe<Scalars['String']>;
|
|
4147
|
+
createdDate?: Maybe<Scalars['DateTime']>;
|
|
4148
|
+
mimetype?: Maybe<Scalars['String']>;
|
|
4149
|
+
filename?: Maybe<Scalars['String']>;
|
|
4150
|
+
filesize?: Maybe<Scalars['Int']>;
|
|
4151
|
+
};
|
|
4152
|
+
export declare type JiraAttachmentConnection = {
|
|
4153
|
+
__typename?: 'JiraAttachmentConnection';
|
|
4154
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4155
|
+
pageInfo: PageInfo;
|
|
4156
|
+
edges?: Maybe<Array<Maybe<JiraAttachmentEdge>>>;
|
|
4157
|
+
};
|
|
4158
|
+
export declare type JiraAttachmentEdge = {
|
|
4159
|
+
__typename?: 'JiraAttachmentEdge';
|
|
4160
|
+
node?: Maybe<JiraAttachment>;
|
|
4161
|
+
cursor: Scalars['String'];
|
|
4162
|
+
};
|
|
4163
|
+
export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4164
|
+
__typename?: 'JiraAttachmentsField';
|
|
4165
|
+
id: Scalars['ID'];
|
|
4166
|
+
fieldId: Scalars['String'];
|
|
4167
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4168
|
+
type: Scalars['String'];
|
|
4169
|
+
name: Scalars['String'];
|
|
4170
|
+
description?: Maybe<Scalars['String']>;
|
|
4171
|
+
permissions?: Maybe<Array<Maybe<JiraAttachmentsPermissions>>>;
|
|
4172
|
+
attachments?: Maybe<JiraAttachmentConnection>;
|
|
4173
|
+
maxAllowedTotalAttachmentsSize?: Maybe<Scalars['Long']>;
|
|
4174
|
+
mediaContext?: Maybe<JiraMediaContext>;
|
|
4175
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4176
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4177
|
+
};
|
|
4178
|
+
export declare type JiraAttachmentsFieldAttachmentsArgs = {
|
|
4179
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
4180
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
4181
|
+
orderField?: Maybe<JiraAttachmentsOrderField>;
|
|
4182
|
+
orderDirection?: Maybe<JiraOrderDirection>;
|
|
4183
|
+
};
|
|
4184
|
+
export declare type JiraAttachmentsOrderField = {
|
|
4185
|
+
id: Scalars['ID'];
|
|
4186
|
+
};
|
|
4187
|
+
export declare enum JiraAttachmentsPermissions {
|
|
4188
|
+
CreateAttachments = "CREATE_ATTACHMENTS",
|
|
4189
|
+
DeleteOwnAttachments = "DELETE_OWN_ATTACHMENTS"
|
|
4190
|
+
}
|
|
4191
|
+
export declare type JiraAvatar = {
|
|
4192
|
+
__typename?: 'JiraAvatar';
|
|
4193
|
+
xsmall?: Maybe<Scalars['String']>;
|
|
4194
|
+
small?: Maybe<Scalars['String']>;
|
|
4195
|
+
medium?: Maybe<Scalars['String']>;
|
|
4196
|
+
large?: Maybe<Scalars['String']>;
|
|
4197
|
+
};
|
|
4198
|
+
export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
4199
|
+
__typename?: 'JiraCMDBField';
|
|
4200
|
+
id: Scalars['ID'];
|
|
4201
|
+
fieldId: Scalars['String'];
|
|
4202
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4203
|
+
type: Scalars['String'];
|
|
4204
|
+
name: Scalars['String'];
|
|
4205
|
+
description?: Maybe<Scalars['String']>;
|
|
4206
|
+
isMulti?: Maybe<Scalars['Boolean']>;
|
|
4207
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4208
|
+
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
4209
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4210
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4211
|
+
attributesIncludedInAutoCompleteSearch?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
4212
|
+
};
|
|
4213
|
+
export declare type JiraCascadingOption = {
|
|
4214
|
+
__typename?: 'JiraCascadingOption';
|
|
4215
|
+
parentOptionValue?: Maybe<JiraOption>;
|
|
4216
|
+
childOptionValue?: Maybe<JiraOption>;
|
|
4217
|
+
};
|
|
4218
|
+
export declare type JiraCascadingOptions = {
|
|
4219
|
+
__typename?: 'JiraCascadingOptions';
|
|
4220
|
+
parentOptionValue?: Maybe<JiraOption>;
|
|
4221
|
+
childOptionValues?: Maybe<Array<Maybe<JiraOption>>>;
|
|
4222
|
+
};
|
|
4223
|
+
export declare type JiraCascadingOptionsConnection = {
|
|
4224
|
+
__typename?: 'JiraCascadingOptionsConnection';
|
|
4225
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4226
|
+
pageInfo: PageInfo;
|
|
4227
|
+
edges?: Maybe<Array<Maybe<JiraCascadingOptionsEdge>>>;
|
|
4228
|
+
};
|
|
4229
|
+
export declare type JiraCascadingOptionsEdge = {
|
|
4230
|
+
__typename?: 'JiraCascadingOptionsEdge';
|
|
4231
|
+
node?: Maybe<JiraCascadingOptions>;
|
|
4232
|
+
cursor: Scalars['String'];
|
|
4233
|
+
};
|
|
4234
|
+
export declare type JiraCascadingSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4235
|
+
__typename?: 'JiraCascadingSelectField';
|
|
4236
|
+
id: Scalars['ID'];
|
|
4237
|
+
fieldId: Scalars['String'];
|
|
4238
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4239
|
+
type: Scalars['String'];
|
|
4240
|
+
name: Scalars['String'];
|
|
4241
|
+
description?: Maybe<Scalars['String']>;
|
|
4242
|
+
cascadingOption?: Maybe<JiraCascadingOption>;
|
|
4243
|
+
cascadingOptions?: Maybe<JiraCascadingOptionsConnection>;
|
|
4244
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4245
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4246
|
+
};
|
|
4247
|
+
export declare type JiraCascadingSelectFieldCascadingOptionsArgs = {
|
|
4248
|
+
first?: Maybe<Scalars['Int']>;
|
|
4249
|
+
after?: Maybe<Scalars['String']>;
|
|
4250
|
+
last?: Maybe<Scalars['Int']>;
|
|
4251
|
+
before?: Maybe<Scalars['String']>;
|
|
4252
|
+
};
|
|
4253
|
+
export declare enum JiraCascadingSelectOptionType {
|
|
4254
|
+
Parent = "PARENT",
|
|
4255
|
+
Child = "CHILD",
|
|
4256
|
+
All = "ALL"
|
|
4257
|
+
}
|
|
4258
|
+
export declare type JiraCascadingSelectOptionsFilter = {
|
|
4259
|
+
optionType: JiraCascadingSelectOptionType;
|
|
4260
|
+
parentOptionName?: Maybe<Scalars['String']>;
|
|
4261
|
+
};
|
|
4262
|
+
export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4263
|
+
__typename?: 'JiraCheckboxesField';
|
|
4264
|
+
id: Scalars['ID'];
|
|
4265
|
+
fieldId: Scalars['String'];
|
|
4266
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4267
|
+
type: Scalars['String'];
|
|
4268
|
+
name: Scalars['String'];
|
|
4269
|
+
description?: Maybe<Scalars['String']>;
|
|
4270
|
+
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
4271
|
+
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
4272
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4273
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4274
|
+
};
|
|
4275
|
+
export declare type JiraCheckboxesFieldFieldOptionsArgs = {
|
|
4276
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4277
|
+
first?: Maybe<Scalars['Int']>;
|
|
4278
|
+
after?: Maybe<Scalars['String']>;
|
|
4279
|
+
last?: Maybe<Scalars['Int']>;
|
|
4280
|
+
before?: Maybe<Scalars['String']>;
|
|
4281
|
+
};
|
|
4282
|
+
export declare type JiraCmdbObject = Node & {
|
|
4283
|
+
__typename?: 'JiraCmdbObject';
|
|
4284
|
+
id: Scalars['ID'];
|
|
4285
|
+
objectGlobalId?: Maybe<Scalars['String']>;
|
|
4286
|
+
objectId?: Maybe<Scalars['String']>;
|
|
4287
|
+
workspaceId?: Maybe<Scalars['String']>;
|
|
4288
|
+
label?: Maybe<Scalars['String']>;
|
|
4289
|
+
};
|
|
4290
|
+
export declare type JiraColor = {
|
|
4291
|
+
__typename?: 'JiraColor';
|
|
4292
|
+
id?: Maybe<Scalars['ID']>;
|
|
4293
|
+
colorKey?: Maybe<Scalars['String']>;
|
|
4294
|
+
};
|
|
4295
|
+
export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4296
|
+
__typename?: 'JiraColorField';
|
|
4297
|
+
id: Scalars['ID'];
|
|
4298
|
+
fieldId: Scalars['String'];
|
|
4299
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4300
|
+
type: Scalars['String'];
|
|
4301
|
+
name: Scalars['String'];
|
|
4302
|
+
description?: Maybe<Scalars['String']>;
|
|
4303
|
+
color?: Maybe<JiraColor>;
|
|
4304
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4305
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4306
|
+
};
|
|
4307
|
+
export declare type JiraComponent = Node & {
|
|
4308
|
+
__typename?: 'JiraComponent';
|
|
4309
|
+
id: Scalars['ID'];
|
|
4310
|
+
componentId: Scalars['Long'];
|
|
4311
|
+
name?: Maybe<Scalars['String']>;
|
|
4312
|
+
description?: Maybe<Scalars['String']>;
|
|
4313
|
+
};
|
|
4314
|
+
export declare type JiraComponentConnection = {
|
|
4315
|
+
__typename?: 'JiraComponentConnection';
|
|
4316
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4317
|
+
pageInfo: PageInfo;
|
|
4318
|
+
edges?: Maybe<Array<Maybe<JiraComponentEdge>>>;
|
|
4319
|
+
};
|
|
4320
|
+
export declare type JiraComponentEdge = {
|
|
4321
|
+
__typename?: 'JiraComponentEdge';
|
|
4322
|
+
node?: Maybe<JiraComponent>;
|
|
4323
|
+
cursor: Scalars['String'];
|
|
4324
|
+
};
|
|
4325
|
+
export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4326
|
+
__typename?: 'JiraComponentsField';
|
|
4327
|
+
id: Scalars['ID'];
|
|
4328
|
+
fieldId: Scalars['String'];
|
|
4329
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4330
|
+
type: Scalars['String'];
|
|
4331
|
+
name: Scalars['String'];
|
|
4332
|
+
description?: Maybe<Scalars['String']>;
|
|
4333
|
+
selectedComponents?: Maybe<Array<Maybe<JiraComponent>>>;
|
|
4334
|
+
components?: Maybe<JiraComponentConnection>;
|
|
4335
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4336
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4337
|
+
};
|
|
4338
|
+
export declare type JiraComponentsFieldComponentsArgs = {
|
|
4339
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4340
|
+
first?: Maybe<Scalars['Int']>;
|
|
4341
|
+
after?: Maybe<Scalars['String']>;
|
|
4342
|
+
last?: Maybe<Scalars['Int']>;
|
|
4343
|
+
before?: Maybe<Scalars['String']>;
|
|
4344
|
+
};
|
|
4345
|
+
export declare type JiraConnectMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4346
|
+
__typename?: 'JiraConnectMultipleSelectField';
|
|
4347
|
+
id: Scalars['ID'];
|
|
4348
|
+
fieldId: Scalars['String'];
|
|
4349
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4350
|
+
type: Scalars['String'];
|
|
4351
|
+
name: Scalars['String'];
|
|
4352
|
+
description?: Maybe<Scalars['String']>;
|
|
4353
|
+
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
4354
|
+
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
4355
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4356
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4357
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4358
|
+
};
|
|
4359
|
+
export declare type JiraConnectMultipleSelectFieldFieldOptionsArgs = {
|
|
4360
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4361
|
+
first?: Maybe<Scalars['Int']>;
|
|
4362
|
+
after?: Maybe<Scalars['String']>;
|
|
4363
|
+
last?: Maybe<Scalars['Int']>;
|
|
4364
|
+
before?: Maybe<Scalars['String']>;
|
|
4365
|
+
};
|
|
4366
|
+
export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4367
|
+
__typename?: 'JiraConnectNumberField';
|
|
4368
|
+
id: Scalars['ID'];
|
|
4369
|
+
fieldId: Scalars['String'];
|
|
4370
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4371
|
+
type: Scalars['String'];
|
|
4372
|
+
name: Scalars['String'];
|
|
4373
|
+
description?: Maybe<Scalars['String']>;
|
|
4374
|
+
number?: Maybe<Scalars['Float']>;
|
|
4375
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4376
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4377
|
+
};
|
|
4378
|
+
export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4379
|
+
__typename?: 'JiraConnectRichTextField';
|
|
4380
|
+
id: Scalars['ID'];
|
|
4381
|
+
fieldId: Scalars['String'];
|
|
4382
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4383
|
+
type: Scalars['String'];
|
|
4384
|
+
name: Scalars['String'];
|
|
4385
|
+
description?: Maybe<Scalars['String']>;
|
|
4386
|
+
richText?: Maybe<JiraRichText>;
|
|
4387
|
+
renderer?: Maybe<Scalars['String']>;
|
|
4388
|
+
mediaContext?: Maybe<JiraMediaContext>;
|
|
4389
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4390
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4391
|
+
};
|
|
4392
|
+
export declare type JiraConnectSingleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4393
|
+
__typename?: 'JiraConnectSingleSelectField';
|
|
4394
|
+
id: Scalars['ID'];
|
|
4395
|
+
fieldId: Scalars['String'];
|
|
4396
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4397
|
+
type: Scalars['String'];
|
|
4398
|
+
name: Scalars['String'];
|
|
4399
|
+
description?: Maybe<Scalars['String']>;
|
|
4400
|
+
fieldOption?: Maybe<JiraOption>;
|
|
4401
|
+
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
4402
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4403
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4404
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4405
|
+
};
|
|
4406
|
+
export declare type JiraConnectSingleSelectFieldFieldOptionsArgs = {
|
|
4407
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4408
|
+
first?: Maybe<Scalars['Int']>;
|
|
4409
|
+
after?: Maybe<Scalars['String']>;
|
|
4410
|
+
last?: Maybe<Scalars['Int']>;
|
|
4411
|
+
before?: Maybe<Scalars['String']>;
|
|
4412
|
+
};
|
|
4413
|
+
export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4414
|
+
__typename?: 'JiraConnectTextField';
|
|
4415
|
+
id: Scalars['ID'];
|
|
4416
|
+
fieldId: Scalars['String'];
|
|
4417
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4418
|
+
type: Scalars['String'];
|
|
4419
|
+
name: Scalars['String'];
|
|
4420
|
+
description?: Maybe<Scalars['String']>;
|
|
4421
|
+
text?: Maybe<Scalars['String']>;
|
|
4422
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4423
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4424
|
+
};
|
|
4425
|
+
export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4426
|
+
__typename?: 'JiraDatePickerField';
|
|
4427
|
+
id: Scalars['ID'];
|
|
4428
|
+
fieldId: Scalars['String'];
|
|
4429
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4430
|
+
type: Scalars['String'];
|
|
4431
|
+
name: Scalars['String'];
|
|
4432
|
+
description?: Maybe<Scalars['String']>;
|
|
4433
|
+
date?: Maybe<Scalars['Date']>;
|
|
4434
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4435
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4436
|
+
};
|
|
4437
|
+
export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4438
|
+
__typename?: 'JiraDateTimePickerField';
|
|
4439
|
+
id: Scalars['ID'];
|
|
4440
|
+
fieldId: Scalars['String'];
|
|
4441
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4442
|
+
type: Scalars['String'];
|
|
4443
|
+
name: Scalars['String'];
|
|
4444
|
+
description?: Maybe<Scalars['String']>;
|
|
4445
|
+
dateTime?: Maybe<Scalars['DateTime']>;
|
|
4446
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4447
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4448
|
+
};
|
|
4449
|
+
export declare type JiraDefaultGrantTypeValue = Node & {
|
|
4450
|
+
__typename?: 'JiraDefaultGrantTypeValue';
|
|
4451
|
+
id: Scalars['ID'];
|
|
4452
|
+
name: Scalars['String'];
|
|
4453
|
+
};
|
|
4454
|
+
export declare type JiraDevOpsIssuePanel = {
|
|
4455
|
+
__typename?: 'JiraDevOpsIssuePanel';
|
|
4456
|
+
panelState?: Maybe<JiraDevOpsIssuePanelState>;
|
|
4457
|
+
devOpsIssuePanelBanner?: Maybe<JiraDevOpsIssuePanelBannerType>;
|
|
4458
|
+
devSummaryResult?: Maybe<JiraIssueDevSummaryResult>;
|
|
4459
|
+
};
|
|
4460
|
+
export declare enum JiraDevOpsIssuePanelBannerType {
|
|
4461
|
+
IssueKeyOnboarding = "ISSUE_KEY_ONBOARDING"
|
|
4462
|
+
}
|
|
4463
|
+
export declare enum JiraDevOpsIssuePanelState {
|
|
4464
|
+
Hidden = "HIDDEN",
|
|
4465
|
+
NotConnected = "NOT_CONNECTED",
|
|
4466
|
+
DevSummary = "DEV_SUMMARY"
|
|
4467
|
+
}
|
|
4468
|
+
export declare type JiraDevOpsMutation = {
|
|
4469
|
+
__typename?: 'JiraDevOpsMutation';
|
|
4470
|
+
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
4471
|
+
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
4472
|
+
};
|
|
4473
|
+
export declare type JiraDevOpsMutationDismissDevOpsIssuePanelBannerArgs = {
|
|
4474
|
+
input: JiraDismissDevOpsIssuePanelBannerInput;
|
|
4475
|
+
};
|
|
4476
|
+
export declare type JiraDevOpsQuery = {
|
|
4477
|
+
__typename?: 'JiraDevOpsQuery';
|
|
4478
|
+
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
4479
|
+
};
|
|
4480
|
+
export declare type JiraDevOpsQueryDevOpsIssuePanelArgs = {
|
|
4481
|
+
issueId: Scalars['ID'];
|
|
4482
|
+
};
|
|
4483
|
+
export declare type JiraDismissDevOpsIssuePanelBannerInput = {
|
|
4484
|
+
issueId: Scalars['ID'];
|
|
4485
|
+
bannerType: JiraDevOpsIssuePanelBannerType;
|
|
4486
|
+
};
|
|
4487
|
+
export declare type JiraDismissDevOpsIssuePanelBannerPayload = Payload & {
|
|
4488
|
+
__typename?: 'JiraDismissDevOpsIssuePanelBannerPayload';
|
|
4489
|
+
success: Scalars['Boolean'];
|
|
4490
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4491
|
+
};
|
|
4492
|
+
export declare type JiraEpic = {
|
|
4493
|
+
__typename?: 'JiraEpic';
|
|
4494
|
+
id: Scalars['ID'];
|
|
4495
|
+
issueId: Scalars['Long'];
|
|
4496
|
+
name?: Maybe<Scalars['String']>;
|
|
4497
|
+
key?: Maybe<Scalars['String']>;
|
|
4498
|
+
summary?: Maybe<Scalars['String']>;
|
|
4499
|
+
color?: Maybe<Scalars['String']>;
|
|
4500
|
+
done?: Maybe<Scalars['Boolean']>;
|
|
4501
|
+
};
|
|
4502
|
+
export declare type JiraEpicConnection = {
|
|
4503
|
+
__typename?: 'JiraEpicConnection';
|
|
4504
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4505
|
+
pageInfo: PageInfo;
|
|
4506
|
+
edges?: Maybe<Array<Maybe<JiraEpicEdge>>>;
|
|
4507
|
+
};
|
|
4508
|
+
export declare type JiraEpicEdge = {
|
|
4509
|
+
__typename?: 'JiraEpicEdge';
|
|
4510
|
+
node?: Maybe<JiraEpic>;
|
|
4511
|
+
cursor: Scalars['String'];
|
|
4512
|
+
};
|
|
4513
|
+
export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4514
|
+
__typename?: 'JiraEpicLinkField';
|
|
4515
|
+
id: Scalars['ID'];
|
|
4516
|
+
fieldId: Scalars['String'];
|
|
4517
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4518
|
+
type: Scalars['String'];
|
|
4519
|
+
name: Scalars['String'];
|
|
4520
|
+
description?: Maybe<Scalars['String']>;
|
|
4521
|
+
epic?: Maybe<JiraEpic>;
|
|
4522
|
+
epics?: Maybe<JiraEpicConnection>;
|
|
4523
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4524
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4525
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4526
|
+
};
|
|
4527
|
+
export declare type JiraEpicLinkFieldEpicsArgs = {
|
|
4528
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4529
|
+
first?: Maybe<Scalars['Int']>;
|
|
4530
|
+
after?: Maybe<Scalars['String']>;
|
|
4531
|
+
last?: Maybe<Scalars['Int']>;
|
|
4532
|
+
before?: Maybe<Scalars['String']>;
|
|
4533
|
+
done?: Maybe<Scalars['Boolean']>;
|
|
4534
|
+
};
|
|
4535
|
+
export declare type JiraEstimate = {
|
|
4536
|
+
__typename?: 'JiraEstimate';
|
|
4537
|
+
timeInSeconds?: Maybe<Scalars['Long']>;
|
|
4538
|
+
};
|
|
4539
|
+
export declare type JiraFieldConfig = {
|
|
4540
|
+
__typename?: 'JiraFieldConfig';
|
|
4541
|
+
isRequired?: Maybe<Scalars['Boolean']>;
|
|
4542
|
+
isEditable?: Maybe<Scalars['Boolean']>;
|
|
4543
|
+
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
4544
|
+
};
|
|
4545
|
+
export declare type JiraFieldNonEditableReason = {
|
|
4546
|
+
__typename?: 'JiraFieldNonEditableReason';
|
|
4547
|
+
message?: Maybe<Scalars['String']>;
|
|
4548
|
+
};
|
|
4549
|
+
export declare type JiraFlag = {
|
|
4550
|
+
__typename?: 'JiraFlag';
|
|
4551
|
+
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
4552
|
+
};
|
|
4553
|
+
export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4554
|
+
__typename?: 'JiraFlagField';
|
|
4555
|
+
id: Scalars['ID'];
|
|
4556
|
+
fieldId: Scalars['String'];
|
|
4557
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4558
|
+
type: Scalars['String'];
|
|
4559
|
+
name: Scalars['String'];
|
|
4560
|
+
description?: Maybe<Scalars['String']>;
|
|
4561
|
+
flag?: Maybe<JiraFlag>;
|
|
4562
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4563
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4564
|
+
};
|
|
4565
|
+
export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4566
|
+
__typename?: 'JiraForgeGroupField';
|
|
4567
|
+
id: Scalars['ID'];
|
|
4568
|
+
fieldId: Scalars['String'];
|
|
4569
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4570
|
+
type: Scalars['String'];
|
|
4571
|
+
name: Scalars['String'];
|
|
4572
|
+
description?: Maybe<Scalars['String']>;
|
|
4573
|
+
selectedGroup?: Maybe<JiraGroup>;
|
|
4574
|
+
groups?: Maybe<JiraGroupConnection>;
|
|
4575
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4576
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4577
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4578
|
+
};
|
|
4579
|
+
export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
4580
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4581
|
+
first?: Maybe<Scalars['Int']>;
|
|
4582
|
+
after?: Maybe<Scalars['String']>;
|
|
4583
|
+
last?: Maybe<Scalars['Int']>;
|
|
4584
|
+
before?: Maybe<Scalars['String']>;
|
|
4585
|
+
};
|
|
4586
|
+
export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4587
|
+
__typename?: 'JiraForgeNumberField';
|
|
4588
|
+
id: Scalars['ID'];
|
|
4589
|
+
fieldId: Scalars['String'];
|
|
4590
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4591
|
+
type: Scalars['String'];
|
|
4592
|
+
name: Scalars['String'];
|
|
4593
|
+
description?: Maybe<Scalars['String']>;
|
|
4594
|
+
number?: Maybe<Scalars['Float']>;
|
|
4595
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4596
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4597
|
+
};
|
|
4598
|
+
export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4599
|
+
__typename?: 'JiraForgeStringField';
|
|
4600
|
+
id: Scalars['ID'];
|
|
4601
|
+
fieldId: Scalars['String'];
|
|
4602
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4603
|
+
type: Scalars['String'];
|
|
4604
|
+
name: Scalars['String'];
|
|
4605
|
+
description?: Maybe<Scalars['String']>;
|
|
4606
|
+
text?: Maybe<Scalars['String']>;
|
|
4607
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4608
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4609
|
+
};
|
|
4610
|
+
export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4611
|
+
__typename?: 'JiraForgeStringsField';
|
|
4612
|
+
id: Scalars['ID'];
|
|
4613
|
+
fieldId: Scalars['String'];
|
|
4614
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4615
|
+
type: Scalars['String'];
|
|
4616
|
+
name: Scalars['String'];
|
|
4617
|
+
description?: Maybe<Scalars['String']>;
|
|
4618
|
+
selectedLabels?: Maybe<Array<Maybe<JiraLabel>>>;
|
|
4619
|
+
labels?: Maybe<JiraLabelConnection>;
|
|
4620
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4621
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4622
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4623
|
+
};
|
|
4624
|
+
export declare type JiraForgeStringsFieldLabelsArgs = {
|
|
4625
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4626
|
+
first?: Maybe<Scalars['Int']>;
|
|
4627
|
+
after?: Maybe<Scalars['String']>;
|
|
4628
|
+
last?: Maybe<Scalars['Int']>;
|
|
4629
|
+
before?: Maybe<Scalars['String']>;
|
|
4630
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
4631
|
+
};
|
|
4632
|
+
export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4633
|
+
__typename?: 'JiraForgeUserField';
|
|
4634
|
+
id: Scalars['ID'];
|
|
4635
|
+
fieldId: Scalars['String'];
|
|
4636
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4637
|
+
type: Scalars['String'];
|
|
4638
|
+
name: Scalars['String'];
|
|
4639
|
+
description?: Maybe<Scalars['String']>;
|
|
4640
|
+
user?: Maybe<User>;
|
|
4641
|
+
users?: Maybe<JiraUserConnection>;
|
|
4642
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4643
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4644
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4645
|
+
};
|
|
4646
|
+
export declare type JiraForgeUserFieldUsersArgs = {
|
|
4647
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4648
|
+
first?: Maybe<Scalars['Int']>;
|
|
4649
|
+
after?: Maybe<Scalars['String']>;
|
|
4650
|
+
last?: Maybe<Scalars['Int']>;
|
|
4651
|
+
before?: Maybe<Scalars['String']>;
|
|
4652
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
4653
|
+
};
|
|
4654
|
+
export declare type JiraGrantTypeKey = {
|
|
4655
|
+
__typename?: 'JiraGrantTypeKey';
|
|
4656
|
+
key: JiraGrantTypeKeyEnum;
|
|
4657
|
+
name: Scalars['String'];
|
|
4658
|
+
};
|
|
4659
|
+
export declare enum JiraGrantTypeKeyEnum {
|
|
4660
|
+
ProjectRole = "PROJECT_ROLE",
|
|
4661
|
+
ApplicationRole = "APPLICATION_ROLE",
|
|
4662
|
+
User = "USER",
|
|
4663
|
+
Group = "GROUP",
|
|
4664
|
+
MultiUserPicker = "MULTI_USER_PICKER",
|
|
4665
|
+
MultiGroupPicker = "MULTI_GROUP_PICKER",
|
|
4666
|
+
ServiceProjectCustomerPortalAccess = "SERVICE_PROJECT_CUSTOMER_PORTAL_ACCESS",
|
|
4667
|
+
Reporter = "REPORTER",
|
|
4668
|
+
ProjectLead = "PROJECT_LEAD",
|
|
4669
|
+
Assignee = "ASSIGNEE",
|
|
4670
|
+
AnonymousAccess = "ANONYMOUS_ACCESS",
|
|
4671
|
+
AnyLoggedinUserApplicationRole = "ANY_LOGGEDIN_USER_APPLICATION_ROLE"
|
|
4672
|
+
}
|
|
4673
|
+
export declare type JiraGrantTypeValue = JiraDefaultGrantTypeValue | JiraUserGrantTypeValue | JiraProjectRoleGrantTypeValue | JiraGroupGrantTypeValue | JiraIssueFieldGrantTypeValue;
|
|
4674
|
+
export declare type JiraGrantTypeValueConnection = {
|
|
4675
|
+
__typename?: 'JiraGrantTypeValueConnection';
|
|
4676
|
+
edges?: Maybe<Array<Maybe<JiraGrantTypeValueEdge>>>;
|
|
4677
|
+
pageInfo: PageInfo;
|
|
4678
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4679
|
+
};
|
|
4680
|
+
export declare type JiraGrantTypeValueEdge = {
|
|
4681
|
+
__typename?: 'JiraGrantTypeValueEdge';
|
|
4682
|
+
node: JiraGrantTypeValue;
|
|
4683
|
+
cursor: Scalars['String'];
|
|
4684
|
+
};
|
|
4685
|
+
export declare type JiraGroup = {
|
|
4686
|
+
__typename?: 'JiraGroup';
|
|
4687
|
+
id: Scalars['ID'];
|
|
4688
|
+
groupId?: Maybe<Scalars['ID']>;
|
|
4689
|
+
name?: Maybe<Scalars['String']>;
|
|
4690
|
+
};
|
|
4691
|
+
export declare type JiraGroupConnection = {
|
|
4692
|
+
__typename?: 'JiraGroupConnection';
|
|
4693
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4694
|
+
pageInfo: PageInfo;
|
|
4695
|
+
edges?: Maybe<Array<Maybe<JiraGroup>>>;
|
|
4696
|
+
};
|
|
4697
|
+
export declare type JiraGroupEdge = {
|
|
4698
|
+
__typename?: 'JiraGroupEdge';
|
|
4699
|
+
node?: Maybe<JiraGroup>;
|
|
4700
|
+
cursor: Scalars['String'];
|
|
4701
|
+
};
|
|
4702
|
+
export declare type JiraGroupGrantTypeValue = Node & {
|
|
4703
|
+
__typename?: 'JiraGroupGrantTypeValue';
|
|
4704
|
+
id: Scalars['ID'];
|
|
4705
|
+
group: JiraGroup;
|
|
4706
|
+
};
|
|
4707
|
+
export declare type JiraIssue = Node & {
|
|
4708
|
+
__typename?: 'JiraIssue';
|
|
4709
|
+
id: Scalars['ID'];
|
|
4710
|
+
issueId: Scalars['Long'];
|
|
4711
|
+
key: Scalars['String'];
|
|
4712
|
+
fields?: Maybe<JiraIssueFieldConnection>;
|
|
4713
|
+
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
4714
|
+
};
|
|
4715
|
+
export declare type JiraIssueFieldsArgs = {
|
|
4716
|
+
first?: Maybe<Scalars['Int']>;
|
|
4717
|
+
after?: Maybe<Scalars['String']>;
|
|
4718
|
+
last?: Maybe<Scalars['Int']>;
|
|
4719
|
+
before?: Maybe<Scalars['String']>;
|
|
4720
|
+
};
|
|
4721
|
+
export declare type JiraIssueFieldsByIdArgs = {
|
|
4722
|
+
ids: Array<Scalars['ID']>;
|
|
4723
|
+
first?: Maybe<Scalars['Int']>;
|
|
4724
|
+
after?: Maybe<Scalars['String']>;
|
|
4725
|
+
last?: Maybe<Scalars['Int']>;
|
|
4726
|
+
before?: Maybe<Scalars['String']>;
|
|
4727
|
+
};
|
|
4728
|
+
export declare type JiraIssueBranchDevSummary = {
|
|
4729
|
+
__typename?: 'JiraIssueBranchDevSummary';
|
|
4730
|
+
count?: Maybe<Scalars['Int']>;
|
|
4731
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
4732
|
+
};
|
|
4733
|
+
export declare type JiraIssueBranchDevSummaryContainer = {
|
|
4734
|
+
__typename?: 'JiraIssueBranchDevSummaryContainer';
|
|
4735
|
+
overall?: Maybe<JiraIssueBranchDevSummary>;
|
|
4736
|
+
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
4737
|
+
};
|
|
4738
|
+
export declare type JiraIssueBuildDevSummary = {
|
|
4739
|
+
__typename?: 'JiraIssueBuildDevSummary';
|
|
4740
|
+
count?: Maybe<Scalars['Int']>;
|
|
4741
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
4742
|
+
failedBuildCount?: Maybe<Scalars['Int']>;
|
|
4743
|
+
successfulBuildCount?: Maybe<Scalars['Int']>;
|
|
4744
|
+
unknownBuildCount?: Maybe<Scalars['Int']>;
|
|
4745
|
+
};
|
|
4746
|
+
export declare type JiraIssueBuildDevSummaryContainer = {
|
|
4747
|
+
__typename?: 'JiraIssueBuildDevSummaryContainer';
|
|
4748
|
+
overall?: Maybe<JiraIssueBuildDevSummary>;
|
|
4749
|
+
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
4750
|
+
};
|
|
4751
|
+
export declare type JiraIssueCommitDevSummary = {
|
|
4752
|
+
__typename?: 'JiraIssueCommitDevSummary';
|
|
4753
|
+
count?: Maybe<Scalars['Int']>;
|
|
4754
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
4755
|
+
};
|
|
4756
|
+
export declare type JiraIssueCommitDevSummaryContainer = {
|
|
4757
|
+
__typename?: 'JiraIssueCommitDevSummaryContainer';
|
|
4758
|
+
overall?: Maybe<JiraIssueCommitDevSummary>;
|
|
4759
|
+
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
4760
|
+
};
|
|
4761
|
+
export declare type JiraIssueConnection = {
|
|
4762
|
+
__typename?: 'JiraIssueConnection';
|
|
4763
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4764
|
+
pageInfo: PageInfo;
|
|
4765
|
+
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
4766
|
+
};
|
|
4767
|
+
export declare type JiraIssueDevSummary = {
|
|
4768
|
+
__typename?: 'JiraIssueDevSummary';
|
|
4769
|
+
branch?: Maybe<JiraIssueBranchDevSummaryContainer>;
|
|
4770
|
+
commit?: Maybe<JiraIssueCommitDevSummaryContainer>;
|
|
4771
|
+
pullrequest?: Maybe<JiraIssuePullRequestDevSummaryContainer>;
|
|
4772
|
+
build?: Maybe<JiraIssueBuildDevSummaryContainer>;
|
|
4773
|
+
review?: Maybe<JiraIssueReviewDevSummaryContainer>;
|
|
4774
|
+
};
|
|
4775
|
+
export declare type JiraIssueDevSummaryByProvider = {
|
|
4776
|
+
__typename?: 'JiraIssueDevSummaryByProvider';
|
|
4777
|
+
providerId?: Maybe<Scalars['String']>;
|
|
4778
|
+
name?: Maybe<Scalars['String']>;
|
|
4779
|
+
count?: Maybe<Scalars['Int']>;
|
|
4780
|
+
};
|
|
4781
|
+
export declare type JiraIssueDevSummaryError = {
|
|
4782
|
+
__typename?: 'JiraIssueDevSummaryError';
|
|
4783
|
+
message?: Maybe<Scalars['String']>;
|
|
4784
|
+
instance?: Maybe<JiraIssueDevSummaryErrorProviderInstance>;
|
|
4785
|
+
};
|
|
4786
|
+
export declare type JiraIssueDevSummaryErrorProviderInstance = {
|
|
4787
|
+
__typename?: 'JiraIssueDevSummaryErrorProviderInstance';
|
|
4788
|
+
name?: Maybe<Scalars['String']>;
|
|
4789
|
+
type?: Maybe<Scalars['String']>;
|
|
4790
|
+
baseUrl?: Maybe<Scalars['String']>;
|
|
4791
|
+
};
|
|
4792
|
+
export declare type JiraIssueDevSummaryResult = {
|
|
4793
|
+
__typename?: 'JiraIssueDevSummaryResult';
|
|
4794
|
+
devSummary?: Maybe<JiraIssueDevSummary>;
|
|
4795
|
+
errors?: Maybe<Array<JiraIssueDevSummaryError>>;
|
|
4796
|
+
configErrors?: Maybe<Array<JiraIssueDevSummaryError>>;
|
|
4797
|
+
};
|
|
4798
|
+
export declare type JiraIssueEdge = {
|
|
4799
|
+
__typename?: 'JiraIssueEdge';
|
|
4800
|
+
node?: Maybe<JiraIssue>;
|
|
4801
|
+
cursor: Scalars['String'];
|
|
4802
|
+
};
|
|
4803
|
+
export declare type JiraIssueField = {
|
|
4804
|
+
id: Scalars['ID'];
|
|
4805
|
+
fieldId: Scalars['String'];
|
|
4806
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4807
|
+
type: Scalars['String'];
|
|
4808
|
+
name: Scalars['String'];
|
|
4809
|
+
description?: Maybe<Scalars['String']>;
|
|
4810
|
+
};
|
|
4811
|
+
export declare type JiraIssueFieldConfiguration = {
|
|
4812
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4813
|
+
};
|
|
4814
|
+
export declare type JiraIssueFieldConnection = {
|
|
4815
|
+
__typename?: 'JiraIssueFieldConnection';
|
|
4816
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4817
|
+
pageInfo: PageInfo;
|
|
4818
|
+
edges?: Maybe<Array<Maybe<JiraIssueFieldEdge>>>;
|
|
4819
|
+
};
|
|
4820
|
+
export declare type JiraIssueFieldEdge = {
|
|
4821
|
+
__typename?: 'JiraIssueFieldEdge';
|
|
4822
|
+
node?: Maybe<JiraIssueField>;
|
|
4823
|
+
cursor: Scalars['String'];
|
|
4824
|
+
};
|
|
4825
|
+
export declare type JiraIssueFieldGrantTypeValue = Node & {
|
|
4826
|
+
__typename?: 'JiraIssueFieldGrantTypeValue';
|
|
4827
|
+
id: Scalars['ID'];
|
|
4828
|
+
field: JiraIssueField;
|
|
4829
|
+
};
|
|
4830
|
+
export declare type JiraIssueLink = {
|
|
4831
|
+
__typename?: 'JiraIssueLink';
|
|
4832
|
+
id?: Maybe<Scalars['ID']>;
|
|
4833
|
+
issueLinkId?: Maybe<Scalars['ID']>;
|
|
4834
|
+
relatedBy?: Maybe<JiraIssueLinkTypeRelation>;
|
|
4835
|
+
issue?: Maybe<JiraIssue>;
|
|
4836
|
+
};
|
|
4837
|
+
export declare type JiraIssueLinkConnection = {
|
|
4838
|
+
__typename?: 'JiraIssueLinkConnection';
|
|
4839
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4840
|
+
pageInfo: PageInfo;
|
|
4841
|
+
edges?: Maybe<Array<Maybe<JiraIssueLinkEdge>>>;
|
|
4842
|
+
};
|
|
4843
|
+
export declare enum JiraIssueLinkDirection {
|
|
4844
|
+
Inward = "INWARD",
|
|
4845
|
+
Outward = "OUTWARD"
|
|
4846
|
+
}
|
|
4847
|
+
export declare type JiraIssueLinkEdge = {
|
|
4848
|
+
__typename?: 'JiraIssueLinkEdge';
|
|
4849
|
+
node?: Maybe<JiraIssueLink>;
|
|
4850
|
+
cursor: Scalars['String'];
|
|
4851
|
+
};
|
|
4852
|
+
export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4853
|
+
__typename?: 'JiraIssueLinkField';
|
|
4854
|
+
id: Scalars['ID'];
|
|
4855
|
+
fieldId: Scalars['String'];
|
|
4856
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4857
|
+
type: Scalars['String'];
|
|
4858
|
+
name: Scalars['String'];
|
|
4859
|
+
description?: Maybe<Scalars['String']>;
|
|
4860
|
+
issueLinks?: Maybe<Array<Maybe<JiraIssueLink>>>;
|
|
4861
|
+
issueLinkConnection?: Maybe<JiraIssueLinkConnection>;
|
|
4862
|
+
issueLinkTypeRelations?: Maybe<JiraIssueLinkTypeRelationConnection>;
|
|
4863
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
4864
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4865
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4866
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4867
|
+
};
|
|
4868
|
+
export declare type JiraIssueLinkFieldIssueLinkConnectionArgs = {
|
|
4869
|
+
first?: Maybe<Scalars['Int']>;
|
|
4870
|
+
after?: Maybe<Scalars['String']>;
|
|
4871
|
+
last?: Maybe<Scalars['Int']>;
|
|
4872
|
+
before?: Maybe<Scalars['String']>;
|
|
4873
|
+
};
|
|
4874
|
+
export declare type JiraIssueLinkFieldIssueLinkTypeRelationsArgs = {
|
|
4875
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4876
|
+
first?: Maybe<Scalars['Int']>;
|
|
4877
|
+
after?: Maybe<Scalars['String']>;
|
|
4878
|
+
last?: Maybe<Scalars['Int']>;
|
|
4879
|
+
before?: Maybe<Scalars['String']>;
|
|
4880
|
+
};
|
|
4881
|
+
export declare type JiraIssueLinkFieldIssuesArgs = {
|
|
4882
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4883
|
+
first?: Maybe<Scalars['Int']>;
|
|
4884
|
+
after?: Maybe<Scalars['String']>;
|
|
4885
|
+
last?: Maybe<Scalars['Int']>;
|
|
4886
|
+
before?: Maybe<Scalars['String']>;
|
|
4887
|
+
};
|
|
4888
|
+
export declare type JiraIssueLinkTypeRelation = Node & {
|
|
4889
|
+
__typename?: 'JiraIssueLinkTypeRelation';
|
|
4890
|
+
id: Scalars['ID'];
|
|
4891
|
+
relationName?: Maybe<Scalars['String']>;
|
|
4892
|
+
linkTypeId: Scalars['Long'];
|
|
4893
|
+
linkTypeName?: Maybe<Scalars['String']>;
|
|
4894
|
+
direction?: Maybe<JiraIssueLinkDirection>;
|
|
4895
|
+
};
|
|
4896
|
+
export declare type JiraIssueLinkTypeRelationConnection = {
|
|
4897
|
+
__typename?: 'JiraIssueLinkTypeRelationConnection';
|
|
4898
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
4899
|
+
pageInfo: PageInfo;
|
|
4900
|
+
edges?: Maybe<Array<Maybe<JiraIssueLinkTypeRelationEdge>>>;
|
|
4901
|
+
};
|
|
4902
|
+
export declare type JiraIssueLinkTypeRelationEdge = {
|
|
4903
|
+
__typename?: 'JiraIssueLinkTypeRelationEdge';
|
|
4904
|
+
node?: Maybe<JiraIssueLinkTypeRelation>;
|
|
4905
|
+
cursor: Scalars['String'];
|
|
4906
|
+
};
|
|
4907
|
+
export declare type JiraIssuePullRequestDevSummary = {
|
|
4908
|
+
__typename?: 'JiraIssuePullRequestDevSummary';
|
|
4909
|
+
count?: Maybe<Scalars['Int']>;
|
|
4910
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
4911
|
+
state?: Maybe<JiraPullRequestState>;
|
|
4912
|
+
stateCount?: Maybe<Scalars['Int']>;
|
|
4913
|
+
open?: Maybe<Scalars['Boolean']>;
|
|
4914
|
+
};
|
|
4915
|
+
export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
4916
|
+
__typename?: 'JiraIssuePullRequestDevSummaryContainer';
|
|
4917
|
+
overall?: Maybe<JiraIssuePullRequestDevSummary>;
|
|
4918
|
+
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
4919
|
+
};
|
|
4920
|
+
export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
4921
|
+
__typename?: 'JiraIssueRestrictionField';
|
|
4922
|
+
id: Scalars['ID'];
|
|
4923
|
+
fieldId: Scalars['String'];
|
|
4924
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4925
|
+
type: Scalars['String'];
|
|
4926
|
+
name: Scalars['String'];
|
|
4927
|
+
description?: Maybe<Scalars['String']>;
|
|
4928
|
+
selectedRoles?: Maybe<Array<Maybe<JiraRole>>>;
|
|
4929
|
+
roles?: Maybe<JiraRoleConnection>;
|
|
4930
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
4931
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4932
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
4933
|
+
};
|
|
4934
|
+
export declare type JiraIssueRestrictionFieldRolesArgs = {
|
|
4935
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4936
|
+
first?: Maybe<Scalars['Int']>;
|
|
4937
|
+
after?: Maybe<Scalars['String']>;
|
|
4938
|
+
last?: Maybe<Scalars['Int']>;
|
|
4939
|
+
before?: Maybe<Scalars['String']>;
|
|
4940
|
+
};
|
|
4941
|
+
export declare type JiraIssueReviewDevSummary = {
|
|
4942
|
+
__typename?: 'JiraIssueReviewDevSummary';
|
|
4943
|
+
count?: Maybe<Scalars['Int']>;
|
|
4944
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
4945
|
+
state?: Maybe<JiraReviewState>;
|
|
4946
|
+
stateCount?: Maybe<Scalars['Int']>;
|
|
4947
|
+
};
|
|
4948
|
+
export declare type JiraIssueReviewDevSummaryContainer = {
|
|
4949
|
+
__typename?: 'JiraIssueReviewDevSummaryContainer';
|
|
4950
|
+
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
4951
|
+
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
4952
|
+
};
|
|
4953
|
+
export declare type JiraIssueType = Node & {
|
|
4954
|
+
__typename?: 'JiraIssueType';
|
|
4955
|
+
id: Scalars['ID'];
|
|
4956
|
+
name: Scalars['String'];
|
|
4957
|
+
description?: Maybe<Scalars['String']>;
|
|
4958
|
+
avatar?: Maybe<JiraAvatar>;
|
|
4959
|
+
};
|
|
4960
|
+
export declare type JiraIssueTypeConnection = {
|
|
4961
|
+
__typename?: 'JiraIssueTypeConnection';
|
|
4962
|
+
pageInfo: PageInfo;
|
|
4963
|
+
edges?: Maybe<Array<Maybe<JiraIssueTypeEdge>>>;
|
|
4964
|
+
};
|
|
4965
|
+
export declare type JiraIssueTypeEdge = {
|
|
4966
|
+
__typename?: 'JiraIssueTypeEdge';
|
|
4967
|
+
node?: Maybe<JiraIssueType>;
|
|
4968
|
+
cursor: Scalars['String'];
|
|
4969
|
+
};
|
|
4970
|
+
export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
4971
|
+
__typename?: 'JiraIssueTypeField';
|
|
4972
|
+
id: Scalars['ID'];
|
|
4973
|
+
fieldId: Scalars['String'];
|
|
4974
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
4975
|
+
type: Scalars['String'];
|
|
4976
|
+
name: Scalars['String'];
|
|
4977
|
+
description?: Maybe<Scalars['String']>;
|
|
4978
|
+
issueType?: Maybe<JiraIssueType>;
|
|
4979
|
+
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
4980
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
4981
|
+
};
|
|
4982
|
+
export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
4983
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
4984
|
+
first?: Maybe<Scalars['Int']>;
|
|
4985
|
+
after?: Maybe<Scalars['String']>;
|
|
4986
|
+
last?: Maybe<Scalars['Int']>;
|
|
4987
|
+
before?: Maybe<Scalars['String']>;
|
|
4988
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
4989
|
+
};
|
|
4990
|
+
export declare enum JiraJqlAutocompleteType {
|
|
4991
|
+
None = "NONE",
|
|
4992
|
+
Component = "COMPONENT",
|
|
4993
|
+
Group = "GROUP",
|
|
4994
|
+
Issue = "ISSUE",
|
|
4995
|
+
Issuetype = "ISSUETYPE",
|
|
4996
|
+
Priority = "PRIORITY",
|
|
4997
|
+
Project = "PROJECT",
|
|
4998
|
+
Sprint = "SPRINT",
|
|
4999
|
+
Statuscategory = "STATUSCATEGORY",
|
|
5000
|
+
Status = "STATUS",
|
|
5001
|
+
User = "USER",
|
|
5002
|
+
Version = "VERSION"
|
|
5003
|
+
}
|
|
5004
|
+
export declare type JiraJqlBuilder = {
|
|
5005
|
+
__typename?: 'JiraJqlBuilder';
|
|
5006
|
+
functions: Array<JiraJqlFunction>;
|
|
5007
|
+
lastUsedMode?: Maybe<JiraJqlBuilderMode>;
|
|
5008
|
+
hydrateJqlQuery?: Maybe<JiraJqlHydratedQueryResult>;
|
|
5009
|
+
hydrateJqlQueryForFilter?: Maybe<JiraJqlHydratedQueryResult>;
|
|
5010
|
+
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
5011
|
+
recentFields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
5012
|
+
fieldValues?: Maybe<JiraJqlFieldValueConnection>;
|
|
5013
|
+
recentlyUsedUsers?: Maybe<JiraJqlUserFieldValueConnection>;
|
|
5014
|
+
suggestedGroups?: Maybe<JiraJqlGroupFieldValueConnection>;
|
|
5015
|
+
recentlyUsedProjects?: Maybe<JiraJqlProjectFieldValueConnection>;
|
|
5016
|
+
recentlyUsedSprints?: Maybe<JiraJqlSprintFieldValueConnection>;
|
|
5017
|
+
issueTypes?: Maybe<JiraJqlIssueTypes>;
|
|
5018
|
+
cascadingSelectOptions?: Maybe<JiraJqlOptionFieldValueConnection>;
|
|
5019
|
+
versions?: Maybe<JiraJqlVersions>;
|
|
5020
|
+
};
|
|
5021
|
+
export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
|
|
5022
|
+
query?: Maybe<Scalars['String']>;
|
|
5023
|
+
};
|
|
5024
|
+
export declare type JiraJqlBuilderHydrateJqlQueryForFilterArgs = {
|
|
5025
|
+
id: Scalars['ID'];
|
|
5026
|
+
};
|
|
5027
|
+
export declare type JiraJqlBuilderFieldsArgs = {
|
|
5028
|
+
jqlContext?: Maybe<Scalars['String']>;
|
|
5029
|
+
searchString?: Maybe<Scalars['String']>;
|
|
5030
|
+
forClause?: Maybe<JiraJqlClauseType>;
|
|
5031
|
+
first?: Maybe<Scalars['Int']>;
|
|
5032
|
+
after?: Maybe<Scalars['String']>;
|
|
5033
|
+
};
|
|
5034
|
+
export declare type JiraJqlBuilderRecentFieldsArgs = {
|
|
5035
|
+
jqlContext?: Maybe<Scalars['String']>;
|
|
5036
|
+
forClause?: Maybe<JiraJqlClauseType>;
|
|
5037
|
+
first?: Maybe<Scalars['Int']>;
|
|
5038
|
+
after?: Maybe<Scalars['String']>;
|
|
5039
|
+
last?: Maybe<Scalars['Int']>;
|
|
5040
|
+
before?: Maybe<Scalars['String']>;
|
|
5041
|
+
};
|
|
5042
|
+
export declare type JiraJqlBuilderFieldValuesArgs = {
|
|
5043
|
+
jqlContext?: Maybe<Scalars['String']>;
|
|
5044
|
+
jqlTerm: Scalars['String'];
|
|
5045
|
+
searchString?: Maybe<Scalars['String']>;
|
|
5046
|
+
first?: Maybe<Scalars['Int']>;
|
|
5047
|
+
after?: Maybe<Scalars['String']>;
|
|
5048
|
+
};
|
|
5049
|
+
export declare type JiraJqlBuilderRecentlyUsedUsersArgs = {
|
|
5050
|
+
first?: Maybe<Scalars['Int']>;
|
|
5051
|
+
after?: Maybe<Scalars['String']>;
|
|
5052
|
+
last?: Maybe<Scalars['Int']>;
|
|
5053
|
+
before?: Maybe<Scalars['String']>;
|
|
5054
|
+
};
|
|
5055
|
+
export declare type JiraJqlBuilderSuggestedGroupsArgs = {
|
|
5056
|
+
first?: Maybe<Scalars['Int']>;
|
|
5057
|
+
after?: Maybe<Scalars['String']>;
|
|
5058
|
+
last?: Maybe<Scalars['Int']>;
|
|
5059
|
+
before?: Maybe<Scalars['String']>;
|
|
5060
|
+
};
|
|
5061
|
+
export declare type JiraJqlBuilderRecentlyUsedProjectsArgs = {
|
|
5062
|
+
first?: Maybe<Scalars['Int']>;
|
|
5063
|
+
after?: Maybe<Scalars['String']>;
|
|
5064
|
+
last?: Maybe<Scalars['Int']>;
|
|
5065
|
+
before?: Maybe<Scalars['String']>;
|
|
5066
|
+
};
|
|
5067
|
+
export declare type JiraJqlBuilderRecentlyUsedSprintsArgs = {
|
|
5068
|
+
jqlContext?: Maybe<Scalars['String']>;
|
|
5069
|
+
first?: Maybe<Scalars['Int']>;
|
|
5070
|
+
after?: Maybe<Scalars['String']>;
|
|
5071
|
+
last?: Maybe<Scalars['Int']>;
|
|
5072
|
+
before?: Maybe<Scalars['String']>;
|
|
5073
|
+
};
|
|
5074
|
+
export declare type JiraJqlBuilderIssueTypesArgs = {
|
|
5075
|
+
jqlContext?: Maybe<Scalars['String']>;
|
|
5076
|
+
};
|
|
5077
|
+
export declare type JiraJqlBuilderCascadingSelectOptionsArgs = {
|
|
5078
|
+
first?: Maybe<Scalars['Int']>;
|
|
5079
|
+
after?: Maybe<Scalars['String']>;
|
|
5080
|
+
last?: Maybe<Scalars['Int']>;
|
|
5081
|
+
before?: Maybe<Scalars['String']>;
|
|
5082
|
+
jqlContext?: Maybe<Scalars['String']>;
|
|
5083
|
+
jqlTerm: Scalars['String'];
|
|
5084
|
+
searchString?: Maybe<Scalars['String']>;
|
|
5085
|
+
filter: JiraCascadingSelectOptionsFilter;
|
|
5086
|
+
};
|
|
5087
|
+
export declare type JiraJqlBuilderVersionsArgs = {
|
|
5088
|
+
jqlContext?: Maybe<Scalars['String']>;
|
|
5089
|
+
jqlTerm: Scalars['String'];
|
|
5090
|
+
};
|
|
5091
|
+
export declare enum JiraJqlBuilderMode {
|
|
5092
|
+
Jql = "JQL",
|
|
5093
|
+
Basic = "BASIC"
|
|
5094
|
+
}
|
|
5095
|
+
export declare type JiraJqlCascadingOptionFieldValue = JiraJqlFieldValue & {
|
|
5096
|
+
__typename?: 'JiraJqlCascadingOptionFieldValue';
|
|
5097
|
+
jqlTerm: Scalars['String'];
|
|
5098
|
+
displayName: Scalars['String'];
|
|
5099
|
+
parentOption?: Maybe<JiraJqlOptionFieldValue>;
|
|
5100
|
+
};
|
|
5101
|
+
export declare enum JiraJqlClauseType {
|
|
5102
|
+
Any = "ANY",
|
|
5103
|
+
Where = "WHERE",
|
|
5104
|
+
OrderBy = "ORDER_BY"
|
|
5105
|
+
}
|
|
5106
|
+
export declare type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
|
|
5107
|
+
__typename?: 'JiraJqlComponentFieldValue';
|
|
5108
|
+
jqlTerm: Scalars['String'];
|
|
5109
|
+
displayName: Scalars['String'];
|
|
5110
|
+
};
|
|
5111
|
+
export declare type JiraJqlField = {
|
|
5112
|
+
__typename?: 'JiraJqlField';
|
|
5113
|
+
jqlTerm: Scalars['ID'];
|
|
5114
|
+
displayName?: Maybe<Scalars['String']>;
|
|
5115
|
+
dataTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
5116
|
+
allowedClauseTypes: Array<JiraJqlClauseType>;
|
|
5117
|
+
operators: Array<JiraJqlOperator>;
|
|
5118
|
+
searchTemplate?: Maybe<JiraJqlSearchTemplate>;
|
|
5119
|
+
autoCompleteTemplate?: Maybe<JiraJqlAutocompleteType>;
|
|
5120
|
+
jqlFieldType?: Maybe<JiraJqlFieldType>;
|
|
5121
|
+
shouldShowInContext?: Maybe<Scalars['Boolean']>;
|
|
5122
|
+
};
|
|
5123
|
+
export declare type JiraJqlFieldConnection = {
|
|
5124
|
+
__typename?: 'JiraJqlFieldConnection';
|
|
5125
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5126
|
+
pageInfo: PageInfo;
|
|
5127
|
+
edges?: Maybe<Array<Maybe<JiraJqlFieldEdge>>>;
|
|
5128
|
+
};
|
|
5129
|
+
export declare type JiraJqlFieldConnectionResult = JiraJqlFieldConnection | QueryError;
|
|
5130
|
+
export declare type JiraJqlFieldEdge = {
|
|
5131
|
+
__typename?: 'JiraJqlFieldEdge';
|
|
5132
|
+
node?: Maybe<JiraJqlField>;
|
|
5133
|
+
cursor: Scalars['String'];
|
|
5134
|
+
};
|
|
5135
|
+
export declare type JiraJqlFieldType = {
|
|
5136
|
+
__typename?: 'JiraJqlFieldType';
|
|
5137
|
+
jqlTerm: Scalars['String'];
|
|
5138
|
+
displayName: Scalars['String'];
|
|
5139
|
+
};
|
|
5140
|
+
export declare type JiraJqlFieldValue = {
|
|
5141
|
+
jqlTerm: Scalars['String'];
|
|
5142
|
+
displayName: Scalars['String'];
|
|
5143
|
+
};
|
|
5144
|
+
export declare type JiraJqlFieldValueConnection = {
|
|
5145
|
+
__typename?: 'JiraJqlFieldValueConnection';
|
|
5146
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5147
|
+
pageInfo: PageInfo;
|
|
5148
|
+
edges?: Maybe<Array<Maybe<JiraJqlFieldValueEdge>>>;
|
|
5149
|
+
};
|
|
5150
|
+
export declare type JiraJqlFieldValueEdge = {
|
|
5151
|
+
__typename?: 'JiraJqlFieldValueEdge';
|
|
5152
|
+
node?: Maybe<JiraJqlFieldValue>;
|
|
5153
|
+
cursor: Scalars['String'];
|
|
5154
|
+
};
|
|
5155
|
+
export declare type JiraJqlFunction = {
|
|
5156
|
+
__typename?: 'JiraJqlFunction';
|
|
5157
|
+
displayName?: Maybe<Scalars['String']>;
|
|
5158
|
+
value?: Maybe<Scalars['String']>;
|
|
5159
|
+
isList?: Maybe<Scalars['Boolean']>;
|
|
5160
|
+
dataTypes: Array<Scalars['String']>;
|
|
5161
|
+
};
|
|
5162
|
+
export declare type JiraJqlGroupFieldValue = JiraJqlFieldValue & {
|
|
5163
|
+
__typename?: 'JiraJqlGroupFieldValue';
|
|
5164
|
+
jqlTerm: Scalars['String'];
|
|
5165
|
+
displayName: Scalars['String'];
|
|
5166
|
+
group: JiraGroup;
|
|
5167
|
+
};
|
|
5168
|
+
export declare type JiraJqlGroupFieldValueConnection = {
|
|
5169
|
+
__typename?: 'JiraJqlGroupFieldValueConnection';
|
|
5170
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5171
|
+
pageInfo: PageInfo;
|
|
5172
|
+
edges?: Maybe<Array<Maybe<JiraJqlGroupFieldValueEdge>>>;
|
|
5173
|
+
};
|
|
5174
|
+
export declare type JiraJqlGroupFieldValueEdge = {
|
|
5175
|
+
__typename?: 'JiraJqlGroupFieldValueEdge';
|
|
5176
|
+
node?: Maybe<JiraJqlGroupFieldValue>;
|
|
5177
|
+
cursor: Scalars['String'];
|
|
5178
|
+
};
|
|
5179
|
+
export declare type JiraJqlHydratedQuery = {
|
|
5180
|
+
__typename?: 'JiraJqlHydratedQuery';
|
|
5181
|
+
jql?: Maybe<Scalars['String']>;
|
|
5182
|
+
fields: Array<JiraJqlQueryHydratedFieldResult>;
|
|
5183
|
+
};
|
|
5184
|
+
export declare type JiraJqlHydratedQueryResult = JiraJqlHydratedQuery | QueryError;
|
|
5185
|
+
export declare type JiraJqlIssueFieldValue = JiraJqlFieldValue & {
|
|
5186
|
+
__typename?: 'JiraJqlIssueFieldValue';
|
|
5187
|
+
jqlTerm: Scalars['String'];
|
|
5188
|
+
displayName: Scalars['String'];
|
|
5189
|
+
issue: JiraIssue;
|
|
5190
|
+
};
|
|
5191
|
+
export declare type JiraJqlIssueTypeFieldValue = JiraJqlFieldValue & {
|
|
5192
|
+
__typename?: 'JiraJqlIssueTypeFieldValue';
|
|
5193
|
+
jqlTerm: Scalars['String'];
|
|
5194
|
+
displayName: Scalars['String'];
|
|
5195
|
+
issueTypes: Array<JiraIssueType>;
|
|
5196
|
+
};
|
|
5197
|
+
export declare type JiraJqlIssueTypeFieldValueConnection = {
|
|
5198
|
+
__typename?: 'JiraJqlIssueTypeFieldValueConnection';
|
|
5199
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5200
|
+
pageInfo: PageInfo;
|
|
5201
|
+
edges?: Maybe<Array<Maybe<JiraJqlIssueTypeFieldValueEdge>>>;
|
|
5202
|
+
};
|
|
5203
|
+
export declare type JiraJqlIssueTypeFieldValueEdge = {
|
|
5204
|
+
__typename?: 'JiraJqlIssueTypeFieldValueEdge';
|
|
5205
|
+
node?: Maybe<JiraJqlIssueTypeFieldValue>;
|
|
5206
|
+
cursor: Scalars['String'];
|
|
5207
|
+
};
|
|
5208
|
+
export declare type JiraJqlIssueTypes = {
|
|
5209
|
+
__typename?: 'JiraJqlIssueTypes';
|
|
5210
|
+
aboveBaseLevel?: Maybe<JiraJqlIssueTypeFieldValueConnection>;
|
|
5211
|
+
baseLevel?: Maybe<JiraJqlIssueTypeFieldValueConnection>;
|
|
5212
|
+
belowBaseLevel?: Maybe<JiraJqlIssueTypeFieldValueConnection>;
|
|
5213
|
+
};
|
|
5214
|
+
export declare type JiraJqlIssueTypesAboveBaseLevelArgs = {
|
|
5215
|
+
first?: Maybe<Scalars['Int']>;
|
|
5216
|
+
after?: Maybe<Scalars['String']>;
|
|
5217
|
+
last?: Maybe<Scalars['Int']>;
|
|
5218
|
+
before?: Maybe<Scalars['String']>;
|
|
5219
|
+
};
|
|
5220
|
+
export declare type JiraJqlIssueTypesBaseLevelArgs = {
|
|
5221
|
+
first?: Maybe<Scalars['Int']>;
|
|
5222
|
+
after?: Maybe<Scalars['String']>;
|
|
5223
|
+
last?: Maybe<Scalars['Int']>;
|
|
5224
|
+
before?: Maybe<Scalars['String']>;
|
|
5225
|
+
};
|
|
5226
|
+
export declare type JiraJqlIssueTypesBelowBaseLevelArgs = {
|
|
5227
|
+
first?: Maybe<Scalars['Int']>;
|
|
5228
|
+
after?: Maybe<Scalars['String']>;
|
|
5229
|
+
last?: Maybe<Scalars['Int']>;
|
|
5230
|
+
before?: Maybe<Scalars['String']>;
|
|
5231
|
+
};
|
|
5232
|
+
export declare type JiraJqlLabelFieldValue = JiraJqlFieldValue & {
|
|
5233
|
+
__typename?: 'JiraJqlLabelFieldValue';
|
|
5234
|
+
jqlTerm: Scalars['String'];
|
|
5235
|
+
displayName: Scalars['String'];
|
|
5236
|
+
label?: Maybe<JiraLabel>;
|
|
5237
|
+
};
|
|
5238
|
+
export declare enum JiraJqlOperator {
|
|
5239
|
+
Equals = "EQUALS",
|
|
5240
|
+
NotEquals = "NOT_EQUALS",
|
|
5241
|
+
In = "IN",
|
|
5242
|
+
NotIn = "NOT_IN",
|
|
5243
|
+
Is = "IS",
|
|
5244
|
+
IsNot = "IS_NOT",
|
|
5245
|
+
LessThan = "LESS_THAN",
|
|
5246
|
+
LessThanOrEqual = "LESS_THAN_OR_EQUAL",
|
|
5247
|
+
GreaterThan = "GREATER_THAN",
|
|
5248
|
+
GreaterThanOrEqual = "GREATER_THAN_OR_EQUAL",
|
|
5249
|
+
Contains = "CONTAINS",
|
|
5250
|
+
NotContains = "NOT_CONTAINS",
|
|
5251
|
+
WasNotIn = "WAS_NOT_IN",
|
|
5252
|
+
Changed = "CHANGED",
|
|
5253
|
+
WasIn = "WAS_IN",
|
|
5254
|
+
Was = "WAS",
|
|
5255
|
+
WasNot = "WAS_NOT"
|
|
5256
|
+
}
|
|
5257
|
+
export declare type JiraJqlOptionFieldValue = JiraJqlFieldValue & {
|
|
5258
|
+
__typename?: 'JiraJqlOptionFieldValue';
|
|
5259
|
+
jqlTerm: Scalars['String'];
|
|
5260
|
+
displayName: Scalars['String'];
|
|
5261
|
+
};
|
|
5262
|
+
export declare type JiraJqlOptionFieldValueConnection = {
|
|
5263
|
+
__typename?: 'JiraJqlOptionFieldValueConnection';
|
|
5264
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5265
|
+
pageInfo: PageInfo;
|
|
5266
|
+
edges?: Maybe<Array<Maybe<JiraJqlOptionFieldValueEdge>>>;
|
|
5267
|
+
};
|
|
5268
|
+
export declare type JiraJqlOptionFieldValueEdge = {
|
|
5269
|
+
__typename?: 'JiraJqlOptionFieldValueEdge';
|
|
5270
|
+
node?: Maybe<JiraJqlOptionFieldValue>;
|
|
5271
|
+
cursor: Scalars['String'];
|
|
5272
|
+
};
|
|
5273
|
+
export declare type JiraJqlPriorityFieldValue = JiraJqlFieldValue & {
|
|
5274
|
+
__typename?: 'JiraJqlPriorityFieldValue';
|
|
5275
|
+
jqlTerm: Scalars['String'];
|
|
5276
|
+
displayName: Scalars['String'];
|
|
5277
|
+
priority: JiraPriority;
|
|
5278
|
+
};
|
|
5279
|
+
export declare type JiraJqlProjectFieldValue = JiraJqlFieldValue & {
|
|
5280
|
+
__typename?: 'JiraJqlProjectFieldValue';
|
|
5281
|
+
jqlTerm: Scalars['String'];
|
|
5282
|
+
displayName: Scalars['String'];
|
|
5283
|
+
project: JiraProject;
|
|
5284
|
+
};
|
|
5285
|
+
export declare type JiraJqlProjectFieldValueConnection = {
|
|
5286
|
+
__typename?: 'JiraJqlProjectFieldValueConnection';
|
|
5287
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5288
|
+
pageInfo: PageInfo;
|
|
5289
|
+
edges?: Maybe<Array<Maybe<JiraJqlProjectFieldValueEdge>>>;
|
|
5290
|
+
};
|
|
5291
|
+
export declare type JiraJqlProjectFieldValueEdge = {
|
|
5292
|
+
__typename?: 'JiraJqlProjectFieldValueEdge';
|
|
5293
|
+
node?: Maybe<JiraJqlProjectFieldValue>;
|
|
5294
|
+
cursor: Scalars['String'];
|
|
5295
|
+
};
|
|
5296
|
+
export declare type JiraJqlQueryHydratedError = {
|
|
5297
|
+
__typename?: 'JiraJqlQueryHydratedError';
|
|
5298
|
+
jqlTerm: Scalars['String'];
|
|
5299
|
+
error?: Maybe<QueryError>;
|
|
5300
|
+
};
|
|
5301
|
+
export declare type JiraJqlQueryHydratedField = {
|
|
5302
|
+
__typename?: 'JiraJqlQueryHydratedField';
|
|
5303
|
+
jqlTerm: Scalars['String'];
|
|
5304
|
+
field: JiraJqlField;
|
|
5305
|
+
values: Array<Maybe<JiraJqlQueryHydratedValueResult>>;
|
|
5306
|
+
};
|
|
5307
|
+
export declare type JiraJqlQueryHydratedFieldResult = JiraJqlQueryHydratedField | JiraJqlQueryHydratedError;
|
|
5308
|
+
export declare type JiraJqlQueryHydratedValue = {
|
|
5309
|
+
__typename?: 'JiraJqlQueryHydratedValue';
|
|
5310
|
+
jqlTerm: Scalars['String'];
|
|
5311
|
+
values: Array<Maybe<JiraJqlFieldValue>>;
|
|
5312
|
+
};
|
|
5313
|
+
export declare type JiraJqlQueryHydratedValueResult = JiraJqlQueryHydratedValue | JiraJqlQueryHydratedError;
|
|
5314
|
+
export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
5315
|
+
__typename?: 'JiraJqlResolutionFieldValue';
|
|
5316
|
+
jqlTerm: Scalars['String'];
|
|
5317
|
+
displayName: Scalars['String'];
|
|
5318
|
+
resolution?: Maybe<JiraResolution>;
|
|
5319
|
+
};
|
|
5320
|
+
export declare type JiraJqlSearchTemplate = {
|
|
5321
|
+
__typename?: 'JiraJqlSearchTemplate';
|
|
5322
|
+
key?: Maybe<Scalars['String']>;
|
|
5323
|
+
};
|
|
5324
|
+
export declare type JiraJqlSprintFieldValue = JiraJqlFieldValue & {
|
|
5325
|
+
__typename?: 'JiraJqlSprintFieldValue';
|
|
5326
|
+
jqlTerm: Scalars['String'];
|
|
5327
|
+
displayName: Scalars['String'];
|
|
5328
|
+
sprint: JiraSprint;
|
|
5329
|
+
};
|
|
5330
|
+
export declare type JiraJqlSprintFieldValueConnection = {
|
|
5331
|
+
__typename?: 'JiraJqlSprintFieldValueConnection';
|
|
5332
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5333
|
+
pageInfo: PageInfo;
|
|
5334
|
+
edges?: Maybe<Array<Maybe<JiraJqlSprintFieldValueEdge>>>;
|
|
5335
|
+
};
|
|
5336
|
+
export declare type JiraJqlSprintFieldValueEdge = {
|
|
5337
|
+
__typename?: 'JiraJqlSprintFieldValueEdge';
|
|
5338
|
+
node?: Maybe<JiraJqlSprintFieldValue>;
|
|
5339
|
+
cursor: Scalars['String'];
|
|
5340
|
+
};
|
|
5341
|
+
export declare type JiraJqlStatusCategoryFieldValue = JiraJqlFieldValue & {
|
|
5342
|
+
__typename?: 'JiraJqlStatusCategoryFieldValue';
|
|
5343
|
+
jqlTerm: Scalars['String'];
|
|
5344
|
+
displayName: Scalars['String'];
|
|
5345
|
+
statusCategory: JiraStatusCategory;
|
|
5346
|
+
};
|
|
5347
|
+
export declare type JiraJqlStatusFieldValue = JiraJqlFieldValue & {
|
|
5348
|
+
__typename?: 'JiraJqlStatusFieldValue';
|
|
5349
|
+
jqlTerm: Scalars['String'];
|
|
5350
|
+
displayName: Scalars['String'];
|
|
5351
|
+
statusCategory: JiraStatusCategory;
|
|
5352
|
+
};
|
|
5353
|
+
export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
|
|
5354
|
+
__typename?: 'JiraJqlUserFieldValue';
|
|
5355
|
+
jqlTerm: Scalars['String'];
|
|
5356
|
+
displayName: Scalars['String'];
|
|
5357
|
+
user: User;
|
|
5358
|
+
};
|
|
5359
|
+
export declare type JiraJqlUserFieldValueConnection = {
|
|
5360
|
+
__typename?: 'JiraJqlUserFieldValueConnection';
|
|
5361
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5362
|
+
pageInfo: PageInfo;
|
|
5363
|
+
edges?: Maybe<Array<Maybe<JiraJqlUserFieldValueEdge>>>;
|
|
5364
|
+
};
|
|
5365
|
+
export declare type JiraJqlUserFieldValueEdge = {
|
|
5366
|
+
__typename?: 'JiraJqlUserFieldValueEdge';
|
|
5367
|
+
node?: Maybe<JiraJqlUserFieldValue>;
|
|
5368
|
+
cursor: Scalars['String'];
|
|
5369
|
+
};
|
|
5370
|
+
export declare type JiraJqlVersionFieldValue = JiraJqlFieldValue & {
|
|
5371
|
+
__typename?: 'JiraJqlVersionFieldValue';
|
|
5372
|
+
jqlTerm: Scalars['String'];
|
|
5373
|
+
displayName: Scalars['String'];
|
|
5374
|
+
};
|
|
5375
|
+
export declare type JiraJqlVersionFieldValueConnection = {
|
|
5376
|
+
__typename?: 'JiraJqlVersionFieldValueConnection';
|
|
5377
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5378
|
+
pageInfo: PageInfo;
|
|
5379
|
+
edges?: Maybe<Array<Maybe<JiraJqlVersionFieldValueEdge>>>;
|
|
5380
|
+
};
|
|
5381
|
+
export declare type JiraJqlVersionFieldValueEdge = {
|
|
5382
|
+
__typename?: 'JiraJqlVersionFieldValueEdge';
|
|
5383
|
+
node?: Maybe<JiraJqlVersionFieldValue>;
|
|
5384
|
+
cursor: Scalars['String'];
|
|
5385
|
+
};
|
|
5386
|
+
export declare type JiraJqlVersions = {
|
|
5387
|
+
__typename?: 'JiraJqlVersions';
|
|
5388
|
+
released?: Maybe<JiraJqlVersionFieldValueConnection>;
|
|
5389
|
+
unreleased?: Maybe<JiraJqlVersionFieldValueConnection>;
|
|
5390
|
+
archived?: Maybe<JiraJqlVersionFieldValueConnection>;
|
|
5391
|
+
};
|
|
5392
|
+
export declare type JiraJqlVersionsReleasedArgs = {
|
|
5393
|
+
first?: Maybe<Scalars['Int']>;
|
|
5394
|
+
after?: Maybe<Scalars['String']>;
|
|
5395
|
+
last?: Maybe<Scalars['Int']>;
|
|
5396
|
+
before?: Maybe<Scalars['String']>;
|
|
5397
|
+
includeArchived?: Maybe<Scalars['Boolean']>;
|
|
5398
|
+
};
|
|
5399
|
+
export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
5400
|
+
first?: Maybe<Scalars['Int']>;
|
|
5401
|
+
after?: Maybe<Scalars['String']>;
|
|
5402
|
+
last?: Maybe<Scalars['Int']>;
|
|
5403
|
+
before?: Maybe<Scalars['String']>;
|
|
5404
|
+
includeArchived?: Maybe<Scalars['Boolean']>;
|
|
5405
|
+
};
|
|
5406
|
+
export declare type JiraJqlVersionsArchivedArgs = {
|
|
5407
|
+
first?: Maybe<Scalars['Int']>;
|
|
5408
|
+
after?: Maybe<Scalars['String']>;
|
|
5409
|
+
last?: Maybe<Scalars['Int']>;
|
|
5410
|
+
before?: Maybe<Scalars['String']>;
|
|
5411
|
+
};
|
|
5412
|
+
export declare type JiraLabel = {
|
|
5413
|
+
__typename?: 'JiraLabel';
|
|
5414
|
+
labelId?: Maybe<Scalars['ID']>;
|
|
5415
|
+
name?: Maybe<Scalars['String']>;
|
|
5416
|
+
};
|
|
5417
|
+
export declare type JiraLabelConnection = {
|
|
5418
|
+
__typename?: 'JiraLabelConnection';
|
|
5419
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5420
|
+
pageInfo: PageInfo;
|
|
5421
|
+
edges?: Maybe<Array<Maybe<JiraLabelEdge>>>;
|
|
5422
|
+
};
|
|
5423
|
+
export declare type JiraLabelEdge = {
|
|
5424
|
+
__typename?: 'JiraLabelEdge';
|
|
5425
|
+
node?: Maybe<JiraLabel>;
|
|
5426
|
+
cursor: Scalars['String'];
|
|
5427
|
+
};
|
|
5428
|
+
export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5429
|
+
__typename?: 'JiraLabelsField';
|
|
5430
|
+
id: Scalars['ID'];
|
|
5431
|
+
fieldId: Scalars['String'];
|
|
5432
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5433
|
+
type: Scalars['String'];
|
|
5434
|
+
name: Scalars['String'];
|
|
5435
|
+
description?: Maybe<Scalars['String']>;
|
|
5436
|
+
selectedLabels?: Maybe<Array<Maybe<JiraLabel>>>;
|
|
5437
|
+
labels?: Maybe<JiraLabelConnection>;
|
|
5438
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
5439
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5440
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5441
|
+
};
|
|
5442
|
+
export declare type JiraLabelsFieldLabelsArgs = {
|
|
5443
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
5444
|
+
first?: Maybe<Scalars['Int']>;
|
|
5445
|
+
after?: Maybe<Scalars['String']>;
|
|
5446
|
+
last?: Maybe<Scalars['Int']>;
|
|
5447
|
+
before?: Maybe<Scalars['String']>;
|
|
5448
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
5449
|
+
};
|
|
5450
|
+
export declare type JiraMediaContext = {
|
|
5451
|
+
__typename?: 'JiraMediaContext';
|
|
5452
|
+
uploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
5453
|
+
};
|
|
5454
|
+
export declare type JiraMediaUploadToken = {
|
|
5455
|
+
__typename?: 'JiraMediaUploadToken';
|
|
5456
|
+
endpointUrl?: Maybe<Scalars['URL']>;
|
|
5457
|
+
clientId?: Maybe<Scalars['String']>;
|
|
5458
|
+
targetCollection?: Maybe<Scalars['String']>;
|
|
5459
|
+
token?: Maybe<Scalars['String']>;
|
|
5460
|
+
tokenDurationInMin?: Maybe<Scalars['Int']>;
|
|
5461
|
+
};
|
|
5462
|
+
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
5463
|
+
export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5464
|
+
__typename?: 'JiraMultipleGroupPickerField';
|
|
5465
|
+
id: Scalars['ID'];
|
|
5466
|
+
fieldId: Scalars['String'];
|
|
5467
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5468
|
+
type: Scalars['String'];
|
|
5469
|
+
name: Scalars['String'];
|
|
5470
|
+
description?: Maybe<Scalars['String']>;
|
|
5471
|
+
selectedGroups?: Maybe<Array<Maybe<JiraGroup>>>;
|
|
5472
|
+
groups?: Maybe<JiraGroupConnection>;
|
|
5473
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5474
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
5475
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5476
|
+
};
|
|
5477
|
+
export declare type JiraMultipleGroupPickerFieldGroupsArgs = {
|
|
5478
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
5479
|
+
first?: Maybe<Scalars['Int']>;
|
|
5480
|
+
after?: Maybe<Scalars['String']>;
|
|
5481
|
+
last?: Maybe<Scalars['Int']>;
|
|
5482
|
+
before?: Maybe<Scalars['String']>;
|
|
5483
|
+
};
|
|
5484
|
+
export declare type JiraMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5485
|
+
__typename?: 'JiraMultipleSelectField';
|
|
5486
|
+
id: Scalars['ID'];
|
|
5487
|
+
fieldId: Scalars['String'];
|
|
5488
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5489
|
+
type: Scalars['String'];
|
|
5490
|
+
name: Scalars['String'];
|
|
5491
|
+
description?: Maybe<Scalars['String']>;
|
|
5492
|
+
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
5493
|
+
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
5494
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5495
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
5496
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5497
|
+
};
|
|
5498
|
+
export declare type JiraMultipleSelectFieldFieldOptionsArgs = {
|
|
5499
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
5500
|
+
first?: Maybe<Scalars['Int']>;
|
|
5501
|
+
after?: Maybe<Scalars['String']>;
|
|
5502
|
+
last?: Maybe<Scalars['Int']>;
|
|
5503
|
+
before?: Maybe<Scalars['String']>;
|
|
5504
|
+
};
|
|
5505
|
+
export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5506
|
+
__typename?: 'JiraMultipleSelectUserPickerField';
|
|
5507
|
+
id: Scalars['ID'];
|
|
5508
|
+
fieldId: Scalars['String'];
|
|
5509
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5510
|
+
type: Scalars['String'];
|
|
5511
|
+
name: Scalars['String'];
|
|
5512
|
+
description?: Maybe<Scalars['String']>;
|
|
5513
|
+
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
5514
|
+
users?: Maybe<JiraUserConnection>;
|
|
5515
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
5516
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5517
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5518
|
+
};
|
|
5519
|
+
export declare type JiraMultipleSelectUserPickerFieldUsersArgs = {
|
|
5520
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
5521
|
+
first?: Maybe<Scalars['Int']>;
|
|
5522
|
+
after?: Maybe<Scalars['String']>;
|
|
5523
|
+
last?: Maybe<Scalars['Int']>;
|
|
5524
|
+
before?: Maybe<Scalars['String']>;
|
|
5525
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
5526
|
+
};
|
|
5527
|
+
export declare type JiraMultipleVersionPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5528
|
+
__typename?: 'JiraMultipleVersionPickerField';
|
|
5529
|
+
id: Scalars['ID'];
|
|
5530
|
+
fieldId: Scalars['String'];
|
|
5531
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5532
|
+
type: Scalars['String'];
|
|
5533
|
+
name: Scalars['String'];
|
|
5534
|
+
description?: Maybe<Scalars['String']>;
|
|
5535
|
+
selectedVersions?: Maybe<Array<Maybe<JiraVersion>>>;
|
|
5536
|
+
versions?: Maybe<JiraVersionConnection>;
|
|
5537
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5538
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5539
|
+
};
|
|
5540
|
+
export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
5541
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
5542
|
+
first?: Maybe<Scalars['Int']>;
|
|
5543
|
+
after?: Maybe<Scalars['String']>;
|
|
5544
|
+
last?: Maybe<Scalars['Int']>;
|
|
5545
|
+
before?: Maybe<Scalars['String']>;
|
|
5546
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
5547
|
+
};
|
|
5548
|
+
export declare type JiraMutation = {
|
|
5549
|
+
__typename?: 'JiraMutation';
|
|
5550
|
+
devOps?: Maybe<JiraDevOpsMutation>;
|
|
5551
|
+
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
5552
|
+
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
5553
|
+
};
|
|
5554
|
+
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
5555
|
+
input: JiraPermissionSchemeAddGrantInput;
|
|
5556
|
+
};
|
|
5557
|
+
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
5558
|
+
input: JiraPermissionSchemeRemoveGrantInput;
|
|
5559
|
+
};
|
|
5560
|
+
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5561
|
+
__typename?: 'JiraNumberField';
|
|
5562
|
+
id: Scalars['ID'];
|
|
5563
|
+
fieldId: Scalars['String'];
|
|
5564
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5565
|
+
type: Scalars['String'];
|
|
5566
|
+
name: Scalars['String'];
|
|
5567
|
+
description?: Maybe<Scalars['String']>;
|
|
5568
|
+
number?: Maybe<Scalars['Float']>;
|
|
5569
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5570
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5571
|
+
};
|
|
5572
|
+
export declare type JiraOption = Node & {
|
|
5573
|
+
__typename?: 'JiraOption';
|
|
5574
|
+
id: Scalars['ID'];
|
|
5575
|
+
optionId: Scalars['Long'];
|
|
5576
|
+
value?: Maybe<Scalars['String']>;
|
|
5577
|
+
isDisabled?: Maybe<Scalars['Boolean']>;
|
|
5578
|
+
};
|
|
5579
|
+
export declare type JiraOptionConnection = {
|
|
5580
|
+
__typename?: 'JiraOptionConnection';
|
|
5581
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5582
|
+
pageInfo: PageInfo;
|
|
5583
|
+
edges?: Maybe<Array<Maybe<JiraOptionEdge>>>;
|
|
5584
|
+
};
|
|
5585
|
+
export declare type JiraOptionEdge = {
|
|
5586
|
+
__typename?: 'JiraOptionEdge';
|
|
5587
|
+
node?: Maybe<JiraOption>;
|
|
5588
|
+
cursor: Scalars['String'];
|
|
5589
|
+
};
|
|
5590
|
+
export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
5591
|
+
__typename?: 'JiraOptoutDevOpsIssuePanelNotConnectedPayload';
|
|
5592
|
+
success: Scalars['Boolean'];
|
|
5593
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5594
|
+
};
|
|
5595
|
+
export declare type JiraOrderDirection = {
|
|
5596
|
+
id: Scalars['ID'];
|
|
5597
|
+
};
|
|
5598
|
+
export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5599
|
+
__typename?: 'JiraParentIssueField';
|
|
5600
|
+
id: Scalars['ID'];
|
|
5601
|
+
fieldId: Scalars['String'];
|
|
5602
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5603
|
+
type: Scalars['String'];
|
|
5604
|
+
name: Scalars['String'];
|
|
5605
|
+
description?: Maybe<Scalars['String']>;
|
|
5606
|
+
parentIssue?: Maybe<JiraIssue>;
|
|
5607
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5608
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5609
|
+
};
|
|
5610
|
+
export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5611
|
+
__typename?: 'JiraPeopleField';
|
|
5612
|
+
id: Scalars['ID'];
|
|
5613
|
+
fieldId: Scalars['String'];
|
|
5614
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5615
|
+
type: Scalars['String'];
|
|
5616
|
+
name: Scalars['String'];
|
|
5617
|
+
description?: Maybe<Scalars['String']>;
|
|
5618
|
+
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
5619
|
+
isMulti?: Maybe<Scalars['Boolean']>;
|
|
5620
|
+
users?: Maybe<JiraUserConnection>;
|
|
5621
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
5622
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5623
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5624
|
+
};
|
|
5625
|
+
export declare type JiraPeopleFieldUsersArgs = {
|
|
5626
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
5627
|
+
first?: Maybe<Scalars['Int']>;
|
|
5628
|
+
after?: Maybe<Scalars['String']>;
|
|
5629
|
+
last?: Maybe<Scalars['Int']>;
|
|
5630
|
+
before?: Maybe<Scalars['String']>;
|
|
5631
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
5632
|
+
};
|
|
5633
|
+
export declare type JiraPermissionGrantHolder = {
|
|
5634
|
+
__typename?: 'JiraPermissionGrantHolder';
|
|
5635
|
+
permission: JiraProjectPermission;
|
|
5636
|
+
grants?: Maybe<Array<JiraPermissionGrants>>;
|
|
5637
|
+
};
|
|
5638
|
+
export declare type JiraPermissionGrantValue = {
|
|
5639
|
+
__typename?: 'JiraPermissionGrantValue';
|
|
5640
|
+
id: Scalars['ID'];
|
|
5641
|
+
value: JiraGrantTypeValue;
|
|
5642
|
+
};
|
|
5643
|
+
export declare type JiraPermissionGrantValueConnection = {
|
|
5644
|
+
__typename?: 'JiraPermissionGrantValueConnection';
|
|
5645
|
+
pageInfo: PageInfo;
|
|
5646
|
+
edges?: Maybe<Array<Maybe<JiraPermissionGrantValueEdge>>>;
|
|
5647
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5648
|
+
};
|
|
5649
|
+
export declare type JiraPermissionGrantValueEdge = {
|
|
5650
|
+
__typename?: 'JiraPermissionGrantValueEdge';
|
|
5651
|
+
node: JiraPermissionGrantValue;
|
|
5652
|
+
cursor: Scalars['String'];
|
|
5653
|
+
};
|
|
5654
|
+
export declare type JiraPermissionGrants = {
|
|
5655
|
+
__typename?: 'JiraPermissionGrants';
|
|
5656
|
+
grantType: JiraGrantTypeKey;
|
|
5657
|
+
grantValues?: Maybe<Array<JiraPermissionGrantValue>>;
|
|
5658
|
+
};
|
|
5659
|
+
export declare type JiraPermissionLevel = {
|
|
5660
|
+
__typename?: 'JiraPermissionLevel';
|
|
5661
|
+
group?: Maybe<JiraGroup>;
|
|
5662
|
+
role?: Maybe<JiraRole>;
|
|
5663
|
+
};
|
|
5664
|
+
export declare type JiraPermissionScheme = Node & {
|
|
5665
|
+
__typename?: 'JiraPermissionScheme';
|
|
5666
|
+
id: Scalars['ID'];
|
|
5667
|
+
name: Scalars['String'];
|
|
5668
|
+
description?: Maybe<Scalars['String']>;
|
|
5669
|
+
};
|
|
5670
|
+
export declare type JiraPermissionSchemeAddGrantInput = {
|
|
5671
|
+
schemeId: Scalars['ID'];
|
|
5672
|
+
grants: Array<JiraPermissionSchemeGrantInput>;
|
|
5673
|
+
};
|
|
5674
|
+
export declare type JiraPermissionSchemeAddGrantPayload = Payload & {
|
|
5675
|
+
__typename?: 'JiraPermissionSchemeAddGrantPayload';
|
|
5676
|
+
success: Scalars['Boolean'];
|
|
5677
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5678
|
+
};
|
|
5679
|
+
export declare type JiraPermissionSchemeGrantGroup = {
|
|
5680
|
+
__typename?: 'JiraPermissionSchemeGrantGroup';
|
|
5681
|
+
category: JiraProjectPermissionCategory;
|
|
5682
|
+
grantHolders?: Maybe<Array<Maybe<JiraPermissionGrantHolder>>>;
|
|
5683
|
+
};
|
|
5684
|
+
export declare type JiraPermissionSchemeGrantInput = {
|
|
5685
|
+
permissionKey: Scalars['String'];
|
|
5686
|
+
grantType: JiraGrantTypeKeyEnum;
|
|
5687
|
+
grantValue: Scalars['ID'];
|
|
5688
|
+
};
|
|
5689
|
+
export declare type JiraPermissionSchemeRemoveGrantInput = {
|
|
5690
|
+
schemeId: Scalars['ID'];
|
|
5691
|
+
grants: Array<JiraPermissionSchemeGrantInput>;
|
|
5692
|
+
};
|
|
5693
|
+
export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
|
|
5694
|
+
__typename?: 'JiraPermissionSchemeRemoveGrantPayload';
|
|
5695
|
+
success: Scalars['Boolean'];
|
|
5696
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5697
|
+
};
|
|
5698
|
+
export declare type JiraPermissionSchemeView = {
|
|
5699
|
+
__typename?: 'JiraPermissionSchemeView';
|
|
5700
|
+
scheme: JiraPermissionScheme;
|
|
5701
|
+
grantGroups?: Maybe<Array<JiraPermissionSchemeGrantGroup>>;
|
|
5702
|
+
};
|
|
5703
|
+
export declare type JiraPermissionSchemeViewResult = JiraPermissionSchemeView | QueryError;
|
|
5704
|
+
export declare type JiraPriority = Node & {
|
|
5705
|
+
__typename?: 'JiraPriority';
|
|
5706
|
+
id: Scalars['ID'];
|
|
5707
|
+
priorityId: Scalars['Long'];
|
|
5708
|
+
name?: Maybe<Scalars['String']>;
|
|
5709
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
5710
|
+
color?: Maybe<Scalars['String']>;
|
|
5711
|
+
};
|
|
5712
|
+
export declare type JiraPriorityConnection = {
|
|
5713
|
+
__typename?: 'JiraPriorityConnection';
|
|
5714
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5715
|
+
pageInfo: PageInfo;
|
|
5716
|
+
edges?: Maybe<Array<Maybe<JiraPriorityEdge>>>;
|
|
5717
|
+
};
|
|
5718
|
+
export declare type JiraPriorityEdge = {
|
|
5719
|
+
__typename?: 'JiraPriorityEdge';
|
|
5720
|
+
node?: Maybe<JiraPriority>;
|
|
5721
|
+
cursor: Scalars['String'];
|
|
5722
|
+
};
|
|
5723
|
+
export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5724
|
+
__typename?: 'JiraPriorityField';
|
|
5725
|
+
id: Scalars['ID'];
|
|
5726
|
+
fieldId: Scalars['String'];
|
|
5727
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5728
|
+
type: Scalars['String'];
|
|
5729
|
+
name: Scalars['String'];
|
|
5730
|
+
description?: Maybe<Scalars['String']>;
|
|
5731
|
+
priority?: Maybe<JiraPriority>;
|
|
5732
|
+
priorities?: Maybe<JiraPriorityConnection>;
|
|
5733
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5734
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5735
|
+
};
|
|
5736
|
+
export declare type JiraPriorityFieldPrioritiesArgs = {
|
|
5737
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
5738
|
+
first?: Maybe<Scalars['Int']>;
|
|
5739
|
+
after?: Maybe<Scalars['String']>;
|
|
5740
|
+
last?: Maybe<Scalars['Int']>;
|
|
5741
|
+
before?: Maybe<Scalars['String']>;
|
|
5742
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
5743
|
+
};
|
|
5744
|
+
export declare type JiraProject = Node & {
|
|
5745
|
+
__typename?: 'JiraProject';
|
|
5746
|
+
id: Scalars['ID'];
|
|
5747
|
+
key: Scalars['String'];
|
|
5748
|
+
name: Scalars['String'];
|
|
5749
|
+
cloudId: Scalars['ID'];
|
|
5750
|
+
description?: Maybe<Scalars['String']>;
|
|
5751
|
+
leadId?: Maybe<Scalars['ID']>;
|
|
5752
|
+
category?: Maybe<JiraProjectCategory>;
|
|
5753
|
+
avatar?: Maybe<JiraAvatar>;
|
|
5754
|
+
projectUrl?: Maybe<Scalars['String']>;
|
|
3694
5755
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
3695
5756
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
3696
5757
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -3800,7 +5861,7 @@ export declare type JiraProjectCategory = Node & {
|
|
|
3800
5861
|
};
|
|
3801
5862
|
export declare type JiraProjectCategoryConnection = {
|
|
3802
5863
|
__typename?: 'JiraProjectCategoryConnection';
|
|
3803
|
-
pageInfo:
|
|
5864
|
+
pageInfo: PageInfo;
|
|
3804
5865
|
edges?: Maybe<Array<Maybe<JiraProjectCategoryEdge>>>;
|
|
3805
5866
|
};
|
|
3806
5867
|
export declare type JiraProjectCategoryEdge = {
|
|
@@ -3810,7 +5871,7 @@ export declare type JiraProjectCategoryEdge = {
|
|
|
3810
5871
|
};
|
|
3811
5872
|
export declare type JiraProjectConnection = {
|
|
3812
5873
|
__typename?: 'JiraProjectConnection';
|
|
3813
|
-
pageInfo:
|
|
5874
|
+
pageInfo: PageInfo;
|
|
3814
5875
|
edges?: Maybe<Array<Maybe<JiraProjectEdge>>>;
|
|
3815
5876
|
};
|
|
3816
5877
|
export declare type JiraProjectEdge = {
|
|
@@ -3818,12 +5879,60 @@ export declare type JiraProjectEdge = {
|
|
|
3818
5879
|
node?: Maybe<JiraProject>;
|
|
3819
5880
|
cursor: Scalars['String'];
|
|
3820
5881
|
};
|
|
5882
|
+
export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5883
|
+
__typename?: 'JiraProjectField';
|
|
5884
|
+
id: Scalars['ID'];
|
|
5885
|
+
fieldId: Scalars['String'];
|
|
5886
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5887
|
+
type: Scalars['String'];
|
|
5888
|
+
name: Scalars['String'];
|
|
5889
|
+
description?: Maybe<Scalars['String']>;
|
|
5890
|
+
project?: Maybe<JiraProject>;
|
|
5891
|
+
projects?: Maybe<JiraProjectConnection>;
|
|
5892
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
5893
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5894
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5895
|
+
};
|
|
5896
|
+
export declare type JiraProjectFieldProjectsArgs = {
|
|
5897
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
5898
|
+
first?: Maybe<Scalars['Int']>;
|
|
5899
|
+
after?: Maybe<Scalars['String']>;
|
|
5900
|
+
last?: Maybe<Scalars['Int']>;
|
|
5901
|
+
before?: Maybe<Scalars['String']>;
|
|
5902
|
+
recent?: Maybe<Scalars['Boolean']>;
|
|
5903
|
+
};
|
|
3821
5904
|
export declare type JiraProjectFilterInput = {
|
|
3822
5905
|
types?: Maybe<Array<JiraProjectType>>;
|
|
3823
5906
|
projectCategoryId?: Maybe<Scalars['ID']>;
|
|
3824
5907
|
keyword?: Maybe<Scalars['String']>;
|
|
3825
5908
|
sortBy?: Maybe<JiraProjectSortInput>;
|
|
3826
5909
|
};
|
|
5910
|
+
export declare type JiraProjectPermission = {
|
|
5911
|
+
__typename?: 'JiraProjectPermission';
|
|
5912
|
+
key: Scalars['String'];
|
|
5913
|
+
name: Scalars['String'];
|
|
5914
|
+
description: Scalars['String'];
|
|
5915
|
+
type: JiraProjectPermissionCategory;
|
|
5916
|
+
};
|
|
5917
|
+
export declare type JiraProjectPermissionCategory = {
|
|
5918
|
+
__typename?: 'JiraProjectPermissionCategory';
|
|
5919
|
+
key: JiraProjectPermissionCategoryEnum;
|
|
5920
|
+
name: Scalars['String'];
|
|
5921
|
+
};
|
|
5922
|
+
export declare enum JiraProjectPermissionCategoryEnum {
|
|
5923
|
+
Projects = "PROJECTS",
|
|
5924
|
+
Issues = "ISSUES",
|
|
5925
|
+
VotersAndWatchers = "VOTERS_AND_WATCHERS",
|
|
5926
|
+
Comments = "COMMENTS",
|
|
5927
|
+
Attachments = "ATTACHMENTS",
|
|
5928
|
+
TimeTracking = "TIME_TRACKING",
|
|
5929
|
+
Other = "OTHER"
|
|
5930
|
+
}
|
|
5931
|
+
export declare type JiraProjectRoleGrantTypeValue = Node & {
|
|
5932
|
+
__typename?: 'JiraProjectRoleGrantTypeValue';
|
|
5933
|
+
id: Scalars['ID'];
|
|
5934
|
+
role: JiraRole;
|
|
5935
|
+
};
|
|
3827
5936
|
export declare enum JiraProjectSortField {
|
|
3828
5937
|
Name = "NAME",
|
|
3829
5938
|
Key = "KEY",
|
|
@@ -3839,18 +5948,25 @@ export declare enum JiraProjectType {
|
|
|
3839
5948
|
Business = "BUSINESS",
|
|
3840
5949
|
Software = "SOFTWARE"
|
|
3841
5950
|
}
|
|
3842
|
-
export declare
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
endCursor?: Maybe<Scalars['String']>;
|
|
3848
|
-
};
|
|
5951
|
+
export declare enum JiraPullRequestState {
|
|
5952
|
+
Open = "OPEN",
|
|
5953
|
+
Declined = "DECLINED",
|
|
5954
|
+
Merged = "MERGED"
|
|
5955
|
+
}
|
|
3849
5956
|
export declare type JiraQuery = {
|
|
3850
5957
|
__typename?: 'JiraQuery';
|
|
3851
5958
|
jiraProject?: Maybe<JiraProject>;
|
|
3852
5959
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
3853
5960
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
5961
|
+
devOps?: Maybe<JiraDevOpsQuery>;
|
|
5962
|
+
issueByKey?: Maybe<JiraIssue>;
|
|
5963
|
+
issueById?: Maybe<JiraIssue>;
|
|
5964
|
+
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
5965
|
+
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
5966
|
+
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
5967
|
+
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
5968
|
+
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
5969
|
+
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
3854
5970
|
};
|
|
3855
5971
|
export declare type JiraQueryJiraProjectArgs = {
|
|
3856
5972
|
id: Scalars['ID'];
|
|
@@ -3861,13 +5977,73 @@ export declare type JiraQueryAllJiraProjectsArgs = {
|
|
|
3861
5977
|
last?: Maybe<Scalars['Int']>;
|
|
3862
5978
|
after?: Maybe<Scalars['String']>;
|
|
3863
5979
|
before?: Maybe<Scalars['String']>;
|
|
3864
|
-
filter: JiraProjectFilterInput;
|
|
5980
|
+
filter: JiraProjectFilterInput;
|
|
5981
|
+
};
|
|
5982
|
+
export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
5983
|
+
cloudId: Scalars['ID'];
|
|
5984
|
+
first?: Maybe<Scalars['Int']>;
|
|
5985
|
+
last?: Maybe<Scalars['Int']>;
|
|
5986
|
+
after?: Maybe<Scalars['String']>;
|
|
5987
|
+
before?: Maybe<Scalars['String']>;
|
|
5988
|
+
};
|
|
5989
|
+
export declare type JiraQueryIssueByKeyArgs = {
|
|
5990
|
+
key: Scalars['String'];
|
|
5991
|
+
cloudId: Scalars['ID'];
|
|
5992
|
+
};
|
|
5993
|
+
export declare type JiraQueryIssueByIdArgs = {
|
|
5994
|
+
id: Scalars['ID'];
|
|
5995
|
+
};
|
|
5996
|
+
export declare type JiraQueryJqlBuilderArgs = {
|
|
5997
|
+
cloudId: Scalars['ID'];
|
|
5998
|
+
};
|
|
5999
|
+
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
6000
|
+
cloudId: Scalars['ID'];
|
|
6001
|
+
};
|
|
6002
|
+
export declare type JiraQueryGrantTypeValuesArgs = {
|
|
6003
|
+
first?: Maybe<Scalars['Int']>;
|
|
6004
|
+
after?: Maybe<Scalars['String']>;
|
|
6005
|
+
last?: Maybe<Scalars['Int']>;
|
|
6006
|
+
before?: Maybe<Scalars['String']>;
|
|
6007
|
+
grantTypeKey?: Maybe<JiraGrantTypeKeyEnum>;
|
|
6008
|
+
searchTerm?: Maybe<Scalars['String']>;
|
|
6009
|
+
cloudId: Scalars['ID'];
|
|
6010
|
+
};
|
|
6011
|
+
export declare type JiraQueryViewPermissionSchemeArgs = {
|
|
6012
|
+
schemeId: Scalars['ID'];
|
|
6013
|
+
};
|
|
6014
|
+
export declare type JiraQueryGetProjectsByPermissionSchemeArgs = {
|
|
6015
|
+
first?: Maybe<Scalars['Int']>;
|
|
6016
|
+
after?: Maybe<Scalars['String']>;
|
|
6017
|
+
last?: Maybe<Scalars['Int']>;
|
|
6018
|
+
before?: Maybe<Scalars['String']>;
|
|
6019
|
+
schemeId: Scalars['ID'];
|
|
6020
|
+
};
|
|
6021
|
+
export declare type JiraQueryPermissionSchemeGrantsArgs = {
|
|
6022
|
+
first?: Maybe<Scalars['Int']>;
|
|
6023
|
+
after?: Maybe<Scalars['String']>;
|
|
6024
|
+
last?: Maybe<Scalars['Int']>;
|
|
6025
|
+
before?: Maybe<Scalars['String']>;
|
|
6026
|
+
schemeId: Scalars['ID'];
|
|
6027
|
+
permissionKey?: Maybe<Scalars['String']>;
|
|
3865
6028
|
};
|
|
3866
|
-
export declare type
|
|
3867
|
-
|
|
6029
|
+
export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6030
|
+
__typename?: 'JiraRadioSelectField';
|
|
6031
|
+
id: Scalars['ID'];
|
|
6032
|
+
fieldId: Scalars['String'];
|
|
6033
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6034
|
+
type: Scalars['String'];
|
|
6035
|
+
name: Scalars['String'];
|
|
6036
|
+
description?: Maybe<Scalars['String']>;
|
|
6037
|
+
selectedOption?: Maybe<JiraOption>;
|
|
6038
|
+
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
6039
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6040
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6041
|
+
};
|
|
6042
|
+
export declare type JiraRadioSelectFieldFieldOptionsArgs = {
|
|
6043
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
3868
6044
|
first?: Maybe<Scalars['Int']>;
|
|
3869
|
-
last?: Maybe<Scalars['Int']>;
|
|
3870
6045
|
after?: Maybe<Scalars['String']>;
|
|
6046
|
+
last?: Maybe<Scalars['Int']>;
|
|
3871
6047
|
before?: Maybe<Scalars['String']>;
|
|
3872
6048
|
};
|
|
3873
6049
|
export declare type JiraReleases = {
|
|
@@ -3928,61 +6104,552 @@ export declare type JiraReleasesEpicConnection = {
|
|
|
3928
6104
|
nodes?: Maybe<Array<Maybe<JiraReleasesEpic>>>;
|
|
3929
6105
|
pageInfo: PageInfo;
|
|
3930
6106
|
};
|
|
3931
|
-
export declare type JiraReleasesEpicEdge = {
|
|
3932
|
-
__typename?: 'JiraReleasesEpicEdge';
|
|
3933
|
-
cursor: Scalars['String'];
|
|
3934
|
-
node?: Maybe<JiraReleasesEpic>;
|
|
6107
|
+
export declare type JiraReleasesEpicEdge = {
|
|
6108
|
+
__typename?: 'JiraReleasesEpicEdge';
|
|
6109
|
+
cursor: Scalars['String'];
|
|
6110
|
+
node?: Maybe<JiraReleasesEpic>;
|
|
6111
|
+
};
|
|
6112
|
+
export declare type JiraReleasesEpicFilter = {
|
|
6113
|
+
projectId: Scalars['ID'];
|
|
6114
|
+
text?: Maybe<Scalars['String']>;
|
|
6115
|
+
releaseStatusFilter?: Maybe<JiraReleasesEpicReleaseStatusFilter>;
|
|
6116
|
+
};
|
|
6117
|
+
export declare enum JiraReleasesEpicReleaseStatusFilter {
|
|
6118
|
+
Released = "RELEASED",
|
|
6119
|
+
ReleasedAndUnreleased = "RELEASED_AND_UNRELEASED"
|
|
6120
|
+
}
|
|
6121
|
+
export declare type JiraReleasesIssue = {
|
|
6122
|
+
__typename?: 'JiraReleasesIssue';
|
|
6123
|
+
id: Scalars['ID'];
|
|
6124
|
+
issueKey?: Maybe<Scalars['String']>;
|
|
6125
|
+
issueTypeId?: Maybe<Scalars['ID']>;
|
|
6126
|
+
assignee?: Maybe<User>;
|
|
6127
|
+
summary?: Maybe<Scalars['String']>;
|
|
6128
|
+
lastDeployed?: Maybe<Scalars['DateTime']>;
|
|
6129
|
+
epic?: Maybe<JiraReleasesEpic>;
|
|
6130
|
+
};
|
|
6131
|
+
export declare type JiraReleasesIssueConnection = {
|
|
6132
|
+
__typename?: 'JiraReleasesIssueConnection';
|
|
6133
|
+
edges?: Maybe<Array<Maybe<JiraReleasesIssueEdge>>>;
|
|
6134
|
+
nodes?: Maybe<Array<Maybe<JiraReleasesIssue>>>;
|
|
6135
|
+
pageInfo: PageInfo;
|
|
6136
|
+
};
|
|
6137
|
+
export declare type JiraReleasesIssueEdge = {
|
|
6138
|
+
__typename?: 'JiraReleasesIssueEdge';
|
|
6139
|
+
cursor: Scalars['String'];
|
|
6140
|
+
node?: Maybe<JiraReleasesIssue>;
|
|
6141
|
+
};
|
|
6142
|
+
export declare type JiraReleasesIssueFilter = {
|
|
6143
|
+
projectId: Scalars['ID'];
|
|
6144
|
+
text?: Maybe<Scalars['String']>;
|
|
6145
|
+
epicIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
6146
|
+
issueTypes?: Maybe<Array<Scalars['ID']>>;
|
|
6147
|
+
assignees?: Maybe<Array<Scalars['ID']>>;
|
|
6148
|
+
fixVersions?: Maybe<Array<Scalars['String']>>;
|
|
6149
|
+
environmentDisplayNames?: Maybe<Array<Scalars['String']>>;
|
|
6150
|
+
environmentCategories?: Maybe<Array<Maybe<DevOpsEnvironmentCategory>>>;
|
|
6151
|
+
releaseStatusFilter?: JiraReleasesIssueReleaseStatusFilter;
|
|
6152
|
+
timeWindow: JiraReleasesTimeWindowInput;
|
|
6153
|
+
};
|
|
6154
|
+
export declare enum JiraReleasesIssueReleaseStatusFilter {
|
|
6155
|
+
Released = "RELEASED",
|
|
6156
|
+
Unreleased = "UNRELEASED",
|
|
6157
|
+
ReleasedAndUnreleased = "RELEASED_AND_UNRELEASED"
|
|
6158
|
+
}
|
|
6159
|
+
export declare type JiraReleasesTimeWindowInput = {
|
|
6160
|
+
after: Scalars['DateTime'];
|
|
6161
|
+
before: Scalars['DateTime'];
|
|
6162
|
+
};
|
|
6163
|
+
export declare type JiraResolution = Node & {
|
|
6164
|
+
__typename?: 'JiraResolution';
|
|
6165
|
+
id: Scalars['ID'];
|
|
6166
|
+
resolutionId: Scalars['Long'];
|
|
6167
|
+
name?: Maybe<Scalars['String']>;
|
|
6168
|
+
description?: Maybe<Scalars['String']>;
|
|
6169
|
+
};
|
|
6170
|
+
export declare type JiraResolutionConnection = {
|
|
6171
|
+
__typename?: 'JiraResolutionConnection';
|
|
6172
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6173
|
+
pageInfo?: Maybe<PageInfo>;
|
|
6174
|
+
edges?: Maybe<Array<Maybe<JiraResolutionEdge>>>;
|
|
6175
|
+
};
|
|
6176
|
+
export declare type JiraResolutionEdge = {
|
|
6177
|
+
__typename?: 'JiraResolutionEdge';
|
|
6178
|
+
node?: Maybe<JiraResolution>;
|
|
6179
|
+
cursor: Scalars['String'];
|
|
6180
|
+
};
|
|
6181
|
+
export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6182
|
+
__typename?: 'JiraResolutionField';
|
|
6183
|
+
id: Scalars['ID'];
|
|
6184
|
+
fieldId: Scalars['String'];
|
|
6185
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6186
|
+
type: Scalars['String'];
|
|
6187
|
+
name: Scalars['String'];
|
|
6188
|
+
description?: Maybe<Scalars['String']>;
|
|
6189
|
+
resolution?: Maybe<JiraResolution>;
|
|
6190
|
+
resolutions?: Maybe<JiraResolutionConnection>;
|
|
6191
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6192
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6193
|
+
};
|
|
6194
|
+
export declare type JiraResolutionFieldResolutionsArgs = {
|
|
6195
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
6196
|
+
first?: Maybe<Scalars['Int']>;
|
|
6197
|
+
after?: Maybe<Scalars['String']>;
|
|
6198
|
+
last?: Maybe<Scalars['Int']>;
|
|
6199
|
+
before?: Maybe<Scalars['String']>;
|
|
6200
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
6201
|
+
};
|
|
6202
|
+
export declare enum JiraReviewState {
|
|
6203
|
+
Review = "REVIEW",
|
|
6204
|
+
Approval = "APPROVAL",
|
|
6205
|
+
Summarize = "SUMMARIZE",
|
|
6206
|
+
Rejected = "REJECTED",
|
|
6207
|
+
Closed = "CLOSED",
|
|
6208
|
+
Draft = "DRAFT",
|
|
6209
|
+
Dead = "DEAD",
|
|
6210
|
+
Unknown = "UNKNOWN"
|
|
6211
|
+
}
|
|
6212
|
+
export declare type JiraRichText = {
|
|
6213
|
+
__typename?: 'JiraRichText';
|
|
6214
|
+
plainText?: Maybe<Scalars['String']>;
|
|
6215
|
+
adfValue?: Maybe<JiraAdf>;
|
|
6216
|
+
wikiValue?: Maybe<Scalars['String']>;
|
|
6217
|
+
};
|
|
6218
|
+
export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6219
|
+
__typename?: 'JiraRichTextField';
|
|
6220
|
+
id: Scalars['ID'];
|
|
6221
|
+
fieldId: Scalars['String'];
|
|
6222
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6223
|
+
type: Scalars['String'];
|
|
6224
|
+
name: Scalars['String'];
|
|
6225
|
+
description?: Maybe<Scalars['String']>;
|
|
6226
|
+
richText?: Maybe<JiraRichText>;
|
|
6227
|
+
renderer?: Maybe<Scalars['String']>;
|
|
6228
|
+
mediaContext?: Maybe<JiraMediaContext>;
|
|
6229
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6230
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6231
|
+
};
|
|
6232
|
+
export declare type JiraRole = {
|
|
6233
|
+
__typename?: 'JiraRole';
|
|
6234
|
+
id: Scalars['ID'];
|
|
6235
|
+
roleId: Scalars['Long'];
|
|
6236
|
+
name?: Maybe<Scalars['String']>;
|
|
6237
|
+
description?: Maybe<Scalars['String']>;
|
|
6238
|
+
};
|
|
6239
|
+
export declare type JiraRoleConnection = {
|
|
6240
|
+
__typename?: 'JiraRoleConnection';
|
|
6241
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6242
|
+
pageInfo: PageInfo;
|
|
6243
|
+
edges?: Maybe<Array<Maybe<JiraRoleEdge>>>;
|
|
6244
|
+
};
|
|
6245
|
+
export declare type JiraRoleEdge = {
|
|
6246
|
+
__typename?: 'JiraRoleEdge';
|
|
6247
|
+
node?: Maybe<JiraRole>;
|
|
6248
|
+
cursor: Scalars['String'];
|
|
6249
|
+
};
|
|
6250
|
+
export declare type JiraSecurityLevel = Node & {
|
|
6251
|
+
__typename?: 'JiraSecurityLevel';
|
|
6252
|
+
id: Scalars['ID'];
|
|
6253
|
+
securityId: Scalars['Long'];
|
|
6254
|
+
name?: Maybe<Scalars['String']>;
|
|
6255
|
+
description?: Maybe<Scalars['String']>;
|
|
6256
|
+
};
|
|
6257
|
+
export declare type JiraSecurityLevelConnection = {
|
|
6258
|
+
__typename?: 'JiraSecurityLevelConnection';
|
|
6259
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6260
|
+
pageInfo: PageInfo;
|
|
6261
|
+
edges?: Maybe<Array<Maybe<JiraSecurityLevelEdge>>>;
|
|
6262
|
+
};
|
|
6263
|
+
export declare type JiraSecurityLevelEdge = {
|
|
6264
|
+
__typename?: 'JiraSecurityLevelEdge';
|
|
6265
|
+
node?: Maybe<JiraSecurityLevel>;
|
|
6266
|
+
cursor: Scalars['String'];
|
|
6267
|
+
};
|
|
6268
|
+
export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6269
|
+
__typename?: 'JiraSecurityLevelField';
|
|
6270
|
+
id: Scalars['ID'];
|
|
6271
|
+
fieldId: Scalars['String'];
|
|
6272
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6273
|
+
type: Scalars['String'];
|
|
6274
|
+
name: Scalars['String'];
|
|
6275
|
+
description?: Maybe<Scalars['String']>;
|
|
6276
|
+
securityLevel?: Maybe<JiraSecurityLevel>;
|
|
6277
|
+
securityLevels?: Maybe<JiraSecurityLevelConnection>;
|
|
6278
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6279
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6280
|
+
};
|
|
6281
|
+
export declare type JiraSecurityLevelFieldSecurityLevelsArgs = {
|
|
6282
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
6283
|
+
first?: Maybe<Scalars['Int']>;
|
|
6284
|
+
after?: Maybe<Scalars['String']>;
|
|
6285
|
+
last?: Maybe<Scalars['Int']>;
|
|
6286
|
+
before?: Maybe<Scalars['String']>;
|
|
6287
|
+
};
|
|
6288
|
+
export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6289
|
+
__typename?: 'JiraSingleGroupPickerField';
|
|
6290
|
+
id: Scalars['ID'];
|
|
6291
|
+
fieldId: Scalars['String'];
|
|
6292
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6293
|
+
type: Scalars['String'];
|
|
6294
|
+
name: Scalars['String'];
|
|
6295
|
+
description?: Maybe<Scalars['String']>;
|
|
6296
|
+
selectedGroup?: Maybe<JiraGroup>;
|
|
6297
|
+
groups?: Maybe<JiraGroupConnection>;
|
|
6298
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6299
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
6300
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6301
|
+
};
|
|
6302
|
+
export declare type JiraSingleGroupPickerFieldGroupsArgs = {
|
|
6303
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
6304
|
+
first?: Maybe<Scalars['Int']>;
|
|
6305
|
+
after?: Maybe<Scalars['String']>;
|
|
6306
|
+
last?: Maybe<Scalars['Int']>;
|
|
6307
|
+
before?: Maybe<Scalars['String']>;
|
|
6308
|
+
};
|
|
6309
|
+
export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6310
|
+
__typename?: 'JiraSingleLineTextField';
|
|
6311
|
+
id: Scalars['ID'];
|
|
6312
|
+
fieldId: Scalars['String'];
|
|
6313
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6314
|
+
type: Scalars['String'];
|
|
6315
|
+
name: Scalars['String'];
|
|
6316
|
+
description?: Maybe<Scalars['String']>;
|
|
6317
|
+
text?: Maybe<Scalars['String']>;
|
|
6318
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6319
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6320
|
+
};
|
|
6321
|
+
export declare type JiraSingleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6322
|
+
__typename?: 'JiraSingleSelectField';
|
|
6323
|
+
id: Scalars['ID'];
|
|
6324
|
+
fieldId: Scalars['String'];
|
|
6325
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6326
|
+
type: Scalars['String'];
|
|
6327
|
+
name: Scalars['String'];
|
|
6328
|
+
description?: Maybe<Scalars['String']>;
|
|
6329
|
+
fieldOption?: Maybe<JiraOption>;
|
|
6330
|
+
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
6331
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
6332
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6333
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6334
|
+
};
|
|
6335
|
+
export declare type JiraSingleSelectFieldFieldOptionsArgs = {
|
|
6336
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
6337
|
+
first?: Maybe<Scalars['Int']>;
|
|
6338
|
+
after?: Maybe<Scalars['String']>;
|
|
6339
|
+
last?: Maybe<Scalars['Int']>;
|
|
6340
|
+
before?: Maybe<Scalars['String']>;
|
|
6341
|
+
};
|
|
6342
|
+
export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6343
|
+
__typename?: 'JiraSingleSelectUserPickerField';
|
|
6344
|
+
id: Scalars['ID'];
|
|
6345
|
+
fieldId: Scalars['String'];
|
|
6346
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6347
|
+
type: Scalars['String'];
|
|
6348
|
+
name: Scalars['String'];
|
|
6349
|
+
description?: Maybe<Scalars['String']>;
|
|
6350
|
+
user?: Maybe<User>;
|
|
6351
|
+
users?: Maybe<JiraUserConnection>;
|
|
6352
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
6353
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6354
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6355
|
+
};
|
|
6356
|
+
export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
|
|
6357
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
6358
|
+
first?: Maybe<Scalars['Int']>;
|
|
6359
|
+
after?: Maybe<Scalars['String']>;
|
|
6360
|
+
last?: Maybe<Scalars['Int']>;
|
|
6361
|
+
before?: Maybe<Scalars['String']>;
|
|
6362
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
6363
|
+
};
|
|
6364
|
+
export declare type JiraSingleVersionPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6365
|
+
__typename?: 'JiraSingleVersionPickerField';
|
|
6366
|
+
id: Scalars['ID'];
|
|
6367
|
+
fieldId: Scalars['String'];
|
|
6368
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6369
|
+
type: Scalars['String'];
|
|
6370
|
+
name: Scalars['String'];
|
|
6371
|
+
description?: Maybe<Scalars['String']>;
|
|
6372
|
+
version?: Maybe<JiraVersion>;
|
|
6373
|
+
versions?: Maybe<JiraVersionConnection>;
|
|
6374
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6375
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6376
|
+
};
|
|
6377
|
+
export declare type JiraSingleVersionPickerFieldVersionsArgs = {
|
|
6378
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
6379
|
+
first?: Maybe<Scalars['Int']>;
|
|
6380
|
+
after?: Maybe<Scalars['String']>;
|
|
6381
|
+
last?: Maybe<Scalars['Int']>;
|
|
6382
|
+
before?: Maybe<Scalars['String']>;
|
|
6383
|
+
suggested?: Maybe<Scalars['Boolean']>;
|
|
6384
|
+
};
|
|
6385
|
+
export declare type JiraSprint = Node & {
|
|
6386
|
+
__typename?: 'JiraSprint';
|
|
6387
|
+
id: Scalars['ID'];
|
|
6388
|
+
sprintId: Scalars['Long'];
|
|
6389
|
+
name?: Maybe<Scalars['String']>;
|
|
6390
|
+
state?: Maybe<JiraSprintState>;
|
|
6391
|
+
boardName?: Maybe<Scalars['String']>;
|
|
6392
|
+
startDate?: Maybe<Scalars['DateTime']>;
|
|
6393
|
+
endDate?: Maybe<Scalars['DateTime']>;
|
|
6394
|
+
};
|
|
6395
|
+
export declare type JiraSprintConnection = {
|
|
6396
|
+
__typename?: 'JiraSprintConnection';
|
|
6397
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6398
|
+
pageInfo: PageInfo;
|
|
6399
|
+
edges?: Maybe<Array<Maybe<JiraSprintEdge>>>;
|
|
6400
|
+
};
|
|
6401
|
+
export declare type JiraSprintEdge = {
|
|
6402
|
+
__typename?: 'JiraSprintEdge';
|
|
6403
|
+
node?: Maybe<JiraSprint>;
|
|
6404
|
+
cursor: Scalars['String'];
|
|
6405
|
+
};
|
|
6406
|
+
export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6407
|
+
__typename?: 'JiraSprintField';
|
|
6408
|
+
id: Scalars['ID'];
|
|
6409
|
+
fieldId: Scalars['String'];
|
|
6410
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6411
|
+
type: Scalars['String'];
|
|
6412
|
+
name: Scalars['String'];
|
|
6413
|
+
description?: Maybe<Scalars['String']>;
|
|
6414
|
+
selectedSprints?: Maybe<Array<Maybe<JiraSprint>>>;
|
|
6415
|
+
sprints?: Maybe<JiraSprintConnection>;
|
|
6416
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
6417
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6418
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6419
|
+
};
|
|
6420
|
+
export declare type JiraSprintFieldSprintsArgs = {
|
|
6421
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
6422
|
+
first?: Maybe<Scalars['Int']>;
|
|
6423
|
+
after?: Maybe<Scalars['String']>;
|
|
6424
|
+
last?: Maybe<Scalars['Int']>;
|
|
6425
|
+
before?: Maybe<Scalars['String']>;
|
|
6426
|
+
state?: Maybe<JiraSprintState>;
|
|
6427
|
+
};
|
|
6428
|
+
export declare enum JiraSprintState {
|
|
6429
|
+
Active = "ACTIVE",
|
|
6430
|
+
Future = "FUTURE",
|
|
6431
|
+
Closed = "CLOSED"
|
|
6432
|
+
}
|
|
6433
|
+
export declare type JiraStatus = Node & {
|
|
6434
|
+
__typename?: 'JiraStatus';
|
|
6435
|
+
id: Scalars['ID'];
|
|
6436
|
+
statusId: Scalars['Long'];
|
|
6437
|
+
name?: Maybe<Scalars['String']>;
|
|
6438
|
+
statusCategory?: Maybe<JiraStatusCategory>;
|
|
6439
|
+
};
|
|
6440
|
+
export declare type JiraStatusCategory = Node & {
|
|
6441
|
+
__typename?: 'JiraStatusCategory';
|
|
6442
|
+
id: Scalars['ID'];
|
|
6443
|
+
statusCategoryId: Scalars['Long'];
|
|
6444
|
+
key?: Maybe<Scalars['String']>;
|
|
6445
|
+
name?: Maybe<Scalars['String']>;
|
|
6446
|
+
colorName?: Maybe<JiraStatusCategoryColor>;
|
|
6447
|
+
};
|
|
6448
|
+
export declare enum JiraStatusCategoryColor {
|
|
6449
|
+
MediumGray = "MEDIUM_GRAY",
|
|
6450
|
+
Green = "GREEN",
|
|
6451
|
+
Yellow = "YELLOW",
|
|
6452
|
+
Brown = "BROWN",
|
|
6453
|
+
WarmRed = "WARM_RED",
|
|
6454
|
+
BlueGray = "BLUE_GRAY"
|
|
6455
|
+
}
|
|
6456
|
+
export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6457
|
+
__typename?: 'JiraStatusField';
|
|
6458
|
+
id: Scalars['ID'];
|
|
6459
|
+
fieldId: Scalars['String'];
|
|
6460
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6461
|
+
type: Scalars['String'];
|
|
6462
|
+
name: Scalars['String'];
|
|
6463
|
+
description?: Maybe<Scalars['String']>;
|
|
6464
|
+
status: JiraStatus;
|
|
6465
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6466
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6467
|
+
};
|
|
6468
|
+
export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfiguration & {
|
|
6469
|
+
__typename?: 'JiraSubtasksField';
|
|
6470
|
+
id: Scalars['ID'];
|
|
6471
|
+
fieldId: Scalars['String'];
|
|
6472
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6473
|
+
type: Scalars['String'];
|
|
6474
|
+
name: Scalars['String'];
|
|
6475
|
+
description?: Maybe<Scalars['String']>;
|
|
6476
|
+
subtasks?: Maybe<JiraIssueConnection>;
|
|
6477
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6478
|
+
};
|
|
6479
|
+
export declare type JiraSubtasksFieldSubtasksArgs = {
|
|
6480
|
+
first?: Maybe<Scalars['Int']>;
|
|
6481
|
+
after?: Maybe<Scalars['String']>;
|
|
6482
|
+
last?: Maybe<Scalars['Int']>;
|
|
6483
|
+
before?: Maybe<Scalars['String']>;
|
|
6484
|
+
};
|
|
6485
|
+
export declare type JiraTeam = Node & {
|
|
6486
|
+
__typename?: 'JiraTeam';
|
|
6487
|
+
id: Scalars['ID'];
|
|
6488
|
+
teamId: Scalars['Long'];
|
|
6489
|
+
name?: Maybe<Scalars['String']>;
|
|
6490
|
+
description?: Maybe<Scalars['String']>;
|
|
6491
|
+
avatar?: Maybe<JiraAvatar>;
|
|
6492
|
+
members?: Maybe<JiraUserConnection>;
|
|
6493
|
+
};
|
|
6494
|
+
export declare type JiraTeamConnection = {
|
|
6495
|
+
__typename?: 'JiraTeamConnection';
|
|
6496
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6497
|
+
pageInfo: PageInfo;
|
|
6498
|
+
edges?: Maybe<Array<Maybe<JiraTeamEdge>>>;
|
|
6499
|
+
};
|
|
6500
|
+
export declare type JiraTeamEdge = {
|
|
6501
|
+
__typename?: 'JiraTeamEdge';
|
|
6502
|
+
node?: Maybe<JiraTeam>;
|
|
6503
|
+
cursor: Scalars['String'];
|
|
6504
|
+
};
|
|
6505
|
+
export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6506
|
+
__typename?: 'JiraTeamField';
|
|
6507
|
+
id: Scalars['ID'];
|
|
6508
|
+
fieldId: Scalars['String'];
|
|
6509
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6510
|
+
type: Scalars['String'];
|
|
6511
|
+
name: Scalars['String'];
|
|
6512
|
+
description?: Maybe<Scalars['String']>;
|
|
6513
|
+
selectedTeam?: Maybe<JiraTeam>;
|
|
6514
|
+
teams?: Maybe<JiraTeamConnection>;
|
|
6515
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
6516
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6517
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6518
|
+
};
|
|
6519
|
+
export declare type JiraTeamFieldTeamsArgs = {
|
|
6520
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
6521
|
+
first?: Maybe<Scalars['Int']>;
|
|
6522
|
+
after?: Maybe<Scalars['String']>;
|
|
6523
|
+
last?: Maybe<Scalars['Int']>;
|
|
6524
|
+
before?: Maybe<Scalars['String']>;
|
|
6525
|
+
};
|
|
6526
|
+
export declare enum JiraTimeFormat {
|
|
6527
|
+
Pretty = "PRETTY",
|
|
6528
|
+
Days = "DAYS",
|
|
6529
|
+
Hours = "HOURS"
|
|
6530
|
+
}
|
|
6531
|
+
export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6532
|
+
__typename?: 'JiraTimeTrackingField';
|
|
6533
|
+
id: Scalars['ID'];
|
|
6534
|
+
fieldId: Scalars['String'];
|
|
6535
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6536
|
+
type: Scalars['String'];
|
|
6537
|
+
name: Scalars['String'];
|
|
6538
|
+
description?: Maybe<Scalars['String']>;
|
|
6539
|
+
originalEstimate?: Maybe<JiraEstimate>;
|
|
6540
|
+
remainingEstimate?: Maybe<JiraEstimate>;
|
|
6541
|
+
timeSpent?: Maybe<JiraEstimate>;
|
|
6542
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6543
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6544
|
+
timeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
6545
|
+
};
|
|
6546
|
+
export declare type JiraTimeTrackingSettings = {
|
|
6547
|
+
__typename?: 'JiraTimeTrackingSettings';
|
|
6548
|
+
isJiraConfiguredTimeTrackingEnabled?: Maybe<Scalars['Boolean']>;
|
|
6549
|
+
workingHoursPerDay?: Maybe<Scalars['Float']>;
|
|
6550
|
+
workingDaysPerWeek?: Maybe<Scalars['Float']>;
|
|
6551
|
+
defaultFormat?: Maybe<JiraTimeFormat>;
|
|
6552
|
+
defaultUnit?: Maybe<JiraTimeUnit>;
|
|
6553
|
+
};
|
|
6554
|
+
export declare enum JiraTimeUnit {
|
|
6555
|
+
Minute = "MINUTE",
|
|
6556
|
+
Hour = "HOUR",
|
|
6557
|
+
Day = "DAY",
|
|
6558
|
+
Week = "WEEK"
|
|
6559
|
+
}
|
|
6560
|
+
export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6561
|
+
__typename?: 'JiraUrlField';
|
|
6562
|
+
id: Scalars['ID'];
|
|
6563
|
+
fieldId: Scalars['String'];
|
|
6564
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6565
|
+
type: Scalars['String'];
|
|
6566
|
+
name: Scalars['String'];
|
|
6567
|
+
description?: Maybe<Scalars['String']>;
|
|
6568
|
+
url?: Maybe<Scalars['URL']>;
|
|
6569
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6570
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6571
|
+
};
|
|
6572
|
+
export declare type JiraUserConnection = {
|
|
6573
|
+
__typename?: 'JiraUserConnection';
|
|
6574
|
+
pageInfo: PageInfo;
|
|
6575
|
+
edges?: Maybe<Array<Maybe<JiraUserEdge>>>;
|
|
6576
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6577
|
+
};
|
|
6578
|
+
export declare type JiraUserEdge = {
|
|
6579
|
+
__typename?: 'JiraUserEdge';
|
|
6580
|
+
node?: Maybe<User>;
|
|
6581
|
+
cursor?: Maybe<Scalars['String']>;
|
|
6582
|
+
};
|
|
6583
|
+
export declare type JiraUserFieldConfig = {
|
|
6584
|
+
__typename?: 'JiraUserFieldConfig';
|
|
6585
|
+
isPinned?: Maybe<Scalars['Boolean']>;
|
|
6586
|
+
isSelected?: Maybe<Scalars['Boolean']>;
|
|
3935
6587
|
};
|
|
3936
|
-
export declare type
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
6588
|
+
export declare type JiraUserGrantTypeValue = Node & {
|
|
6589
|
+
__typename?: 'JiraUserGrantTypeValue';
|
|
6590
|
+
id: Scalars['ID'];
|
|
6591
|
+
user: User;
|
|
3940
6592
|
};
|
|
3941
|
-
export declare
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
__typename?: 'JiraReleasesIssue';
|
|
6593
|
+
export declare type JiraUserIssueFieldConfiguration = {
|
|
6594
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6595
|
+
};
|
|
6596
|
+
export declare type JiraVersion = Node & {
|
|
6597
|
+
__typename?: 'JiraVersion';
|
|
3947
6598
|
id: Scalars['ID'];
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
lastDeployed?: Maybe<Scalars['DateTime']>;
|
|
3953
|
-
epic?: Maybe<JiraReleasesEpic>;
|
|
6599
|
+
versionId: Scalars['Long'];
|
|
6600
|
+
name?: Maybe<Scalars['String']>;
|
|
6601
|
+
iconUrl?: Maybe<Scalars['URL']>;
|
|
6602
|
+
status?: Maybe<JiraVersionStatus>;
|
|
3954
6603
|
};
|
|
3955
|
-
export declare type
|
|
3956
|
-
__typename?: '
|
|
3957
|
-
|
|
3958
|
-
nodes?: Maybe<Array<Maybe<JiraReleasesIssue>>>;
|
|
6604
|
+
export declare type JiraVersionConnection = {
|
|
6605
|
+
__typename?: 'JiraVersionConnection';
|
|
6606
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
3959
6607
|
pageInfo: PageInfo;
|
|
6608
|
+
edges?: Maybe<Array<Maybe<JiraVersionEdge>>>;
|
|
3960
6609
|
};
|
|
3961
|
-
export declare type
|
|
3962
|
-
__typename?: '
|
|
6610
|
+
export declare type JiraVersionEdge = {
|
|
6611
|
+
__typename?: 'JiraVersionEdge';
|
|
6612
|
+
node?: Maybe<JiraVersion>;
|
|
3963
6613
|
cursor: Scalars['String'];
|
|
3964
|
-
node?: Maybe<JiraReleasesIssue>;
|
|
3965
6614
|
};
|
|
3966
|
-
export declare
|
|
3967
|
-
projectId: Scalars['ID'];
|
|
3968
|
-
text?: Maybe<Scalars['String']>;
|
|
3969
|
-
epicIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
3970
|
-
issueTypes?: Maybe<Array<Scalars['ID']>>;
|
|
3971
|
-
assignees?: Maybe<Array<Scalars['ID']>>;
|
|
3972
|
-
fixVersions?: Maybe<Array<Scalars['String']>>;
|
|
3973
|
-
environmentDisplayNames?: Maybe<Array<Scalars['String']>>;
|
|
3974
|
-
environmentCategories?: Maybe<Array<Maybe<DevOpsEnvironmentCategory>>>;
|
|
3975
|
-
releaseStatusFilter?: JiraReleasesIssueReleaseStatusFilter;
|
|
3976
|
-
timeWindow: JiraReleasesTimeWindowInput;
|
|
3977
|
-
};
|
|
3978
|
-
export declare enum JiraReleasesIssueReleaseStatusFilter {
|
|
6615
|
+
export declare enum JiraVersionStatus {
|
|
3979
6616
|
Released = "RELEASED",
|
|
3980
6617
|
Unreleased = "UNRELEASED",
|
|
3981
|
-
|
|
6618
|
+
Archived = "ARCHIVED"
|
|
3982
6619
|
}
|
|
3983
|
-
export declare type
|
|
3984
|
-
|
|
3985
|
-
|
|
6620
|
+
export declare type JiraVote = {
|
|
6621
|
+
__typename?: 'JiraVote';
|
|
6622
|
+
hasVoted?: Maybe<Scalars['Boolean']>;
|
|
6623
|
+
count?: Maybe<Scalars['Long']>;
|
|
6624
|
+
};
|
|
6625
|
+
export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6626
|
+
__typename?: 'JiraVotesField';
|
|
6627
|
+
id: Scalars['ID'];
|
|
6628
|
+
fieldId: Scalars['String'];
|
|
6629
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6630
|
+
type: Scalars['String'];
|
|
6631
|
+
name: Scalars['String'];
|
|
6632
|
+
description?: Maybe<Scalars['String']>;
|
|
6633
|
+
vote?: Maybe<JiraVote>;
|
|
6634
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6635
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6636
|
+
};
|
|
6637
|
+
export declare type JiraWatch = {
|
|
6638
|
+
__typename?: 'JiraWatch';
|
|
6639
|
+
isWatching?: Maybe<Scalars['Boolean']>;
|
|
6640
|
+
count?: Maybe<Scalars['Long']>;
|
|
6641
|
+
};
|
|
6642
|
+
export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6643
|
+
__typename?: 'JiraWatchesField';
|
|
6644
|
+
id: Scalars['ID'];
|
|
6645
|
+
fieldId: Scalars['String'];
|
|
6646
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
6647
|
+
type: Scalars['String'];
|
|
6648
|
+
name: Scalars['String'];
|
|
6649
|
+
description?: Maybe<Scalars['String']>;
|
|
6650
|
+
watch?: Maybe<JiraWatch>;
|
|
6651
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6652
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
3986
6653
|
};
|
|
3987
6654
|
export declare type LabelUsage = {
|
|
3988
6655
|
__typename?: 'LabelUsage';
|
|
@@ -4010,6 +6677,7 @@ export declare type MarketplaceApp = {
|
|
|
4010
6677
|
appKey: Scalars['String'];
|
|
4011
6678
|
name: Scalars['String'];
|
|
4012
6679
|
partner?: Maybe<MarketplacePartner>;
|
|
6680
|
+
entityStatus: MarketplaceEntityStatus;
|
|
4013
6681
|
createdAt: Scalars['DateTime'];
|
|
4014
6682
|
listingStatus: MarketplaceListingStatus;
|
|
4015
6683
|
productHostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -4163,6 +6831,10 @@ export declare type MarketplaceConnectAppDeployment = MarketplaceAppDeployment &
|
|
|
4163
6831
|
isDescriptorFileAvailable: Scalars['Boolean'];
|
|
4164
6832
|
scopes: Array<ConnectAppScope>;
|
|
4165
6833
|
};
|
|
6834
|
+
export declare enum MarketplaceEntityStatus {
|
|
6835
|
+
Active = "ACTIVE",
|
|
6836
|
+
Archived = "ARCHIVED"
|
|
6837
|
+
}
|
|
4166
6838
|
export declare type MarketplaceImageFile = {
|
|
4167
6839
|
__typename?: 'MarketplaceImageFile';
|
|
4168
6840
|
id: Scalars['String'];
|
|
@@ -4347,6 +7019,14 @@ export declare type MigrationKeys = {
|
|
|
4347
7019
|
jira: Scalars['String'];
|
|
4348
7020
|
confluence: Scalars['String'];
|
|
4349
7021
|
};
|
|
7022
|
+
export declare type MoveCardOutput = {
|
|
7023
|
+
__typename?: 'MoveCardOutput';
|
|
7024
|
+
issuesWereTransitioned?: Maybe<Scalars['Boolean']>;
|
|
7025
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
7026
|
+
success?: Maybe<Scalars['Boolean']>;
|
|
7027
|
+
message?: Maybe<Scalars['String']>;
|
|
7028
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
7029
|
+
};
|
|
4350
7030
|
export declare type MoveSprintDownInput = {
|
|
4351
7031
|
boardId: Scalars['ID'];
|
|
4352
7032
|
sprintId: Scalars['ID'];
|
|
@@ -4371,10 +7051,12 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
4371
7051
|
};
|
|
4372
7052
|
export declare type Mutation = {
|
|
4373
7053
|
__typename?: 'Mutation';
|
|
7054
|
+
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
4374
7055
|
createApp?: Maybe<CreateAppResponse>;
|
|
4375
7056
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
4376
7057
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
4377
7058
|
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
7059
|
+
ecosystem?: Maybe<EcosystemMutation>;
|
|
4378
7060
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
4379
7061
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
4380
7062
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
@@ -4393,6 +7075,9 @@ export declare type Mutation = {
|
|
|
4393
7075
|
createCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
4394
7076
|
updateCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
4395
7077
|
deleteCustomFilter?: Maybe<GenericMutationResponse>;
|
|
7078
|
+
boardCardMove?: Maybe<MoveCardOutput>;
|
|
7079
|
+
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
7080
|
+
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
4396
7081
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
4397
7082
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
4398
7083
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -4418,6 +7103,8 @@ export declare type Mutation = {
|
|
|
4418
7103
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
4419
7104
|
updateDevOpsServiceEntityProperties?: Maybe<UpdateDevOpsServiceEntityPropertiesPayload>;
|
|
4420
7105
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
7106
|
+
jira?: Maybe<JiraMutation>;
|
|
7107
|
+
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
4421
7108
|
appStorage?: Maybe<AppStorageMutation>;
|
|
4422
7109
|
createPolarisView?: Maybe<CreatePolarisViewPayload>;
|
|
4423
7110
|
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
@@ -4456,6 +7143,11 @@ export declare type Mutation = {
|
|
|
4456
7143
|
unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
|
|
4457
7144
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
4458
7145
|
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
7146
|
+
createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
|
|
7147
|
+
createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
|
|
7148
|
+
updatePolarisPlayContribution?: Maybe<UpdatePolarisPlayContributionPayload>;
|
|
7149
|
+
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
7150
|
+
createPolarisInsightFromPlayContribution?: Maybe<CreatePolarisInsightPayload>;
|
|
4459
7151
|
createAppTunnels?: Maybe<CreateAppTunnelResponse>;
|
|
4460
7152
|
deleteAppTunnels?: Maybe<GenericMutationResponse>;
|
|
4461
7153
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
@@ -4472,7 +7164,7 @@ export declare type Mutation = {
|
|
|
4472
7164
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
4473
7165
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
4474
7166
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
4475
|
-
setExternalAuthCredentials?: Maybe<
|
|
7167
|
+
setExternalAuthCredentials?: Maybe<SetExternalAuthCredentialsPayload>;
|
|
4476
7168
|
setAppEnvironmentVariable?: Maybe<GenericMutationResponse>;
|
|
4477
7169
|
deleteAppEnvironmentVariable?: Maybe<GenericMutationResponse>;
|
|
4478
7170
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
@@ -4491,49 +7183,49 @@ export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
|
4491
7183
|
input: UpdateAtlassianOAuthClientInput;
|
|
4492
7184
|
};
|
|
4493
7185
|
export declare type MutationCreateColumnArgs = {
|
|
4494
|
-
input
|
|
7186
|
+
input?: Maybe<CreateColumnInput>;
|
|
4495
7187
|
};
|
|
4496
7188
|
export declare type MutationSetColumnNameArgs = {
|
|
4497
|
-
input
|
|
7189
|
+
input?: Maybe<SetColumnNameInput>;
|
|
4498
7190
|
};
|
|
4499
7191
|
export declare type MutationRankColumnArgs = {
|
|
4500
|
-
input
|
|
7192
|
+
input?: Maybe<RankColumnInput>;
|
|
4501
7193
|
};
|
|
4502
7194
|
export declare type MutationSetColumnLimitArgs = {
|
|
4503
|
-
input
|
|
7195
|
+
input?: Maybe<SetColumnLimitInput>;
|
|
4504
7196
|
};
|
|
4505
7197
|
export declare type MutationDeleteColumnArgs = {
|
|
4506
|
-
input
|
|
7198
|
+
input?: Maybe<DeleteColumnInput>;
|
|
4507
7199
|
};
|
|
4508
7200
|
export declare type MutationStartSprintArgs = {
|
|
4509
|
-
input
|
|
7201
|
+
input?: Maybe<StartSprintInput>;
|
|
4510
7202
|
};
|
|
4511
7203
|
export declare type MutationCreateSprintArgs = {
|
|
4512
|
-
input
|
|
7204
|
+
input?: Maybe<CreateSprintInput>;
|
|
4513
7205
|
};
|
|
4514
7206
|
export declare type MutationCompleteSprintArgs = {
|
|
4515
|
-
input
|
|
7207
|
+
input?: Maybe<CompleteSprintInput>;
|
|
4516
7208
|
};
|
|
4517
7209
|
export declare type MutationDeleteSprintArgs = {
|
|
4518
|
-
input
|
|
7210
|
+
input?: Maybe<DeleteSprintInput>;
|
|
4519
7211
|
};
|
|
4520
7212
|
export declare type MutationMoveSprintUpArgs = {
|
|
4521
|
-
input
|
|
7213
|
+
input?: Maybe<MoveSprintUpInput>;
|
|
4522
7214
|
};
|
|
4523
7215
|
export declare type MutationMoveSprintDownArgs = {
|
|
4524
|
-
input
|
|
7216
|
+
input?: Maybe<MoveSprintDownInput>;
|
|
4525
7217
|
};
|
|
4526
7218
|
export declare type MutationEditSprintArgs = {
|
|
4527
|
-
input
|
|
7219
|
+
input?: Maybe<EditSprintInput>;
|
|
4528
7220
|
};
|
|
4529
7221
|
export declare type MutationSetUserSwimlaneStrategyArgs = {
|
|
4530
|
-
input
|
|
7222
|
+
input?: Maybe<SetSwimlaneStrategyInput>;
|
|
4531
7223
|
};
|
|
4532
7224
|
export declare type MutationSetSwimlaneStrategyArgs = {
|
|
4533
|
-
input
|
|
7225
|
+
input?: Maybe<SetSwimlaneStrategyInput>;
|
|
4534
7226
|
};
|
|
4535
7227
|
export declare type MutationSetEstimationTypeArgs = {
|
|
4536
|
-
input
|
|
7228
|
+
input?: Maybe<SetEstimationTypeInput>;
|
|
4537
7229
|
};
|
|
4538
7230
|
export declare type MutationCreateCustomFilterArgs = {
|
|
4539
7231
|
input?: Maybe<CreateCustomFilterInput>;
|
|
@@ -4544,6 +7236,15 @@ export declare type MutationUpdateCustomFilterArgs = {
|
|
|
4544
7236
|
export declare type MutationDeleteCustomFilterArgs = {
|
|
4545
7237
|
input?: Maybe<DeleteCustomFilterInput>;
|
|
4546
7238
|
};
|
|
7239
|
+
export declare type MutationBoardCardMoveArgs = {
|
|
7240
|
+
input?: Maybe<BoardCardMoveInput>;
|
|
7241
|
+
};
|
|
7242
|
+
export declare type MutationAssignIssueParentArgs = {
|
|
7243
|
+
input?: Maybe<AssignIssueParentInput>;
|
|
7244
|
+
};
|
|
7245
|
+
export declare type MutationUnassignIssueParentArgs = {
|
|
7246
|
+
input?: Maybe<UnassignIssueParentInput>;
|
|
7247
|
+
};
|
|
4547
7248
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
4548
7249
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
4549
7250
|
};
|
|
@@ -4619,6 +7320,9 @@ export declare type MutationUpdateDevOpsServiceEntityPropertiesArgs = {
|
|
|
4619
7320
|
export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
4620
7321
|
input: DeleteDevOpsServiceEntityPropertiesInput;
|
|
4621
7322
|
};
|
|
7323
|
+
export declare type MutationUpdateDeveloperLogAccessArgs = {
|
|
7324
|
+
input: UpdateDeveloperLogAccessInput;
|
|
7325
|
+
};
|
|
4622
7326
|
export declare type MutationCreatePolarisViewArgs = {
|
|
4623
7327
|
input: CreatePolarisViewInput;
|
|
4624
7328
|
};
|
|
@@ -4739,6 +7443,22 @@ export declare type MutationCreatePolarisAnonymousVisitorHashArgs = {
|
|
|
4739
7443
|
export declare type MutationDeletePolarisAnonymousVisitorHashArgs = {
|
|
4740
7444
|
hash: Scalars['String'];
|
|
4741
7445
|
};
|
|
7446
|
+
export declare type MutationCreatePolarisPlayArgs = {
|
|
7447
|
+
input: CreatePolarisPlayInput;
|
|
7448
|
+
};
|
|
7449
|
+
export declare type MutationCreatePolarisPlayContributionArgs = {
|
|
7450
|
+
input: CreatePolarisPlayContribution;
|
|
7451
|
+
};
|
|
7452
|
+
export declare type MutationUpdatePolarisPlayContributionArgs = {
|
|
7453
|
+
id: Scalars['ID'];
|
|
7454
|
+
input: UpdatePolarisPlayContribution;
|
|
7455
|
+
};
|
|
7456
|
+
export declare type MutationDeletePolarisPlayContributionArgs = {
|
|
7457
|
+
id: Scalars['ID'];
|
|
7458
|
+
};
|
|
7459
|
+
export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
|
|
7460
|
+
input?: Maybe<CreatePolarisInsightFromPlayContributionInput>;
|
|
7461
|
+
};
|
|
4742
7462
|
export declare type MutationCreateAppTunnelsArgs = {
|
|
4743
7463
|
input: CreateAppTunnelsInput;
|
|
4744
7464
|
};
|
|
@@ -4835,24 +7555,6 @@ export declare type MyActivitiesViewedArgs = {
|
|
|
4835
7555
|
first?: Maybe<Scalars['Int']>;
|
|
4836
7556
|
after?: Maybe<Scalars['String']>;
|
|
4837
7557
|
};
|
|
4838
|
-
export declare type MyActivity = {
|
|
4839
|
-
__typename?: 'MyActivity';
|
|
4840
|
-
all: ActivityConnection;
|
|
4841
|
-
workedOn: ActivityConnection;
|
|
4842
|
-
viewed: ActivityConnection;
|
|
4843
|
-
};
|
|
4844
|
-
export declare type MyActivityAllArgs = {
|
|
4845
|
-
filter?: Maybe<ActivityFilter>;
|
|
4846
|
-
first?: Maybe<Scalars['Int']>;
|
|
4847
|
-
};
|
|
4848
|
-
export declare type MyActivityWorkedOnArgs = {
|
|
4849
|
-
filter?: Maybe<ActivityFilter>;
|
|
4850
|
-
first?: Maybe<Scalars['Int']>;
|
|
4851
|
-
};
|
|
4852
|
-
export declare type MyActivityViewedArgs = {
|
|
4853
|
-
filter?: Maybe<ActivityFilter>;
|
|
4854
|
-
first?: Maybe<Scalars['Int']>;
|
|
4855
|
-
};
|
|
4856
7558
|
export declare type NadelHydrationArgument = {
|
|
4857
7559
|
name: Scalars['String'];
|
|
4858
7560
|
value: Scalars['String'];
|
|
@@ -4946,6 +7648,7 @@ export declare type OpsgenieTeam = Node & {
|
|
|
4946
7648
|
description?: Maybe<Scalars['String']>;
|
|
4947
7649
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
4948
7650
|
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
7651
|
+
url?: Maybe<Scalars['String']>;
|
|
4949
7652
|
members?: Maybe<OpsgenieTeamMemberConnection>;
|
|
4950
7653
|
schedules?: Maybe<Array<Maybe<OpsgenieSchedule>>>;
|
|
4951
7654
|
alertCounts?: Maybe<Array<Maybe<OpsgenieAlertCountByPriority>>>;
|
|
@@ -5034,7 +7737,8 @@ export declare type PolarisComment = {
|
|
|
5034
7737
|
account?: Maybe<User>;
|
|
5035
7738
|
};
|
|
5036
7739
|
export declare enum PolarisCommentKind {
|
|
5037
|
-
View = "VIEW"
|
|
7740
|
+
View = "VIEW",
|
|
7741
|
+
PlayContribution = "PLAY_CONTRIBUTION"
|
|
5038
7742
|
}
|
|
5039
7743
|
export declare type PolarisConnectApp = {
|
|
5040
7744
|
__typename?: 'PolarisConnectApp';
|
|
@@ -5043,6 +7747,7 @@ export declare type PolarisConnectApp = {
|
|
|
5043
7747
|
avatarUrl: Scalars['String'];
|
|
5044
7748
|
oauthClientId: Scalars['String'];
|
|
5045
7749
|
appId?: Maybe<Scalars['String']>;
|
|
7750
|
+
play?: Maybe<PolarisPlay>;
|
|
5046
7751
|
};
|
|
5047
7752
|
export declare type PolarisDecoration = {
|
|
5048
7753
|
__typename?: 'PolarisDecoration';
|
|
@@ -5070,7 +7775,8 @@ export declare enum PolarisFieldType {
|
|
|
5070
7775
|
PolarisIdeaOptionField = "PolarisIdeaOptionField",
|
|
5071
7776
|
PolarisIdeaOptionsField = "PolarisIdeaOptionsField",
|
|
5072
7777
|
PolarisIdeaLabelsField = "PolarisIdeaLabelsField",
|
|
5073
|
-
PolarisIdeaNumberField = "PolarisIdeaNumberField"
|
|
7778
|
+
PolarisIdeaNumberField = "PolarisIdeaNumberField",
|
|
7779
|
+
PolarisIdeaPlayField = "PolarisIdeaPlayField"
|
|
5074
7780
|
}
|
|
5075
7781
|
export declare type PolarisFilterInput = {
|
|
5076
7782
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -5089,6 +7795,7 @@ export declare type PolarisIdea = {
|
|
|
5089
7795
|
id: Scalars['ID'];
|
|
5090
7796
|
archived?: Maybe<Scalars['Boolean']>;
|
|
5091
7797
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
7798
|
+
lastInsightsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
5092
7799
|
};
|
|
5093
7800
|
export declare type PolarisIdeaArchivedByField = PolarisIdeaField & {
|
|
5094
7801
|
__typename?: 'PolarisIdeaArchivedByField';
|
|
@@ -5106,6 +7813,7 @@ export declare type PolarisIdeaArchivedByField = PolarisIdeaField & {
|
|
|
5106
7813
|
formula?: Maybe<Scalars['JSON']>;
|
|
5107
7814
|
presentation?: Maybe<PolarisPresentation>;
|
|
5108
7815
|
description?: Maybe<Scalars['String']>;
|
|
7816
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5109
7817
|
};
|
|
5110
7818
|
export declare type PolarisIdeaArchivedField = PolarisIdeaField & {
|
|
5111
7819
|
__typename?: 'PolarisIdeaArchivedField';
|
|
@@ -5124,6 +7832,7 @@ export declare type PolarisIdeaArchivedField = PolarisIdeaField & {
|
|
|
5124
7832
|
formula?: Maybe<Scalars['JSON']>;
|
|
5125
7833
|
presentation?: Maybe<PolarisPresentation>;
|
|
5126
7834
|
description?: Maybe<Scalars['String']>;
|
|
7835
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5127
7836
|
};
|
|
5128
7837
|
export declare type PolarisIdeaArchivedOnField = PolarisIdeaField & {
|
|
5129
7838
|
__typename?: 'PolarisIdeaArchivedOnField';
|
|
@@ -5141,6 +7850,7 @@ export declare type PolarisIdeaArchivedOnField = PolarisIdeaField & {
|
|
|
5141
7850
|
formula?: Maybe<Scalars['JSON']>;
|
|
5142
7851
|
presentation?: Maybe<PolarisPresentation>;
|
|
5143
7852
|
description?: Maybe<Scalars['String']>;
|
|
7853
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5144
7854
|
};
|
|
5145
7855
|
export declare type PolarisIdeaDateField = PolarisIdeaField & {
|
|
5146
7856
|
__typename?: 'PolarisIdeaDateField';
|
|
@@ -5158,6 +7868,7 @@ export declare type PolarisIdeaDateField = PolarisIdeaField & {
|
|
|
5158
7868
|
formula?: Maybe<Scalars['JSON']>;
|
|
5159
7869
|
presentation?: Maybe<PolarisPresentation>;
|
|
5160
7870
|
description?: Maybe<Scalars['String']>;
|
|
7871
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5161
7872
|
};
|
|
5162
7873
|
export declare type PolarisIdeaDateTimeField = PolarisIdeaField & {
|
|
5163
7874
|
__typename?: 'PolarisIdeaDateTimeField';
|
|
@@ -5175,6 +7886,7 @@ export declare type PolarisIdeaDateTimeField = PolarisIdeaField & {
|
|
|
5175
7886
|
formula?: Maybe<Scalars['JSON']>;
|
|
5176
7887
|
presentation?: Maybe<PolarisPresentation>;
|
|
5177
7888
|
description?: Maybe<Scalars['String']>;
|
|
7889
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5178
7890
|
};
|
|
5179
7891
|
export declare type PolarisIdeaDocumentField = PolarisIdeaField & {
|
|
5180
7892
|
__typename?: 'PolarisIdeaDocumentField';
|
|
@@ -5192,6 +7904,7 @@ export declare type PolarisIdeaDocumentField = PolarisIdeaField & {
|
|
|
5192
7904
|
formula?: Maybe<Scalars['JSON']>;
|
|
5193
7905
|
presentation?: Maybe<PolarisPresentation>;
|
|
5194
7906
|
description?: Maybe<Scalars['String']>;
|
|
7907
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5195
7908
|
};
|
|
5196
7909
|
export declare type PolarisIdeaField = {
|
|
5197
7910
|
id: Scalars['ID'];
|
|
@@ -5208,6 +7921,7 @@ export declare type PolarisIdeaField = {
|
|
|
5208
7921
|
presentation?: Maybe<PolarisPresentation>;
|
|
5209
7922
|
formula?: Maybe<Scalars['JSON']>;
|
|
5210
7923
|
description?: Maybe<Scalars['String']>;
|
|
7924
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5211
7925
|
};
|
|
5212
7926
|
export declare type PolarisIdeaFieldOption = {
|
|
5213
7927
|
__typename?: 'PolarisIdeaFieldOption';
|
|
@@ -5231,6 +7945,7 @@ export declare type PolarisIdeaIssueCommentsField = PolarisIdeaField & {
|
|
|
5231
7945
|
formula?: Maybe<Scalars['JSON']>;
|
|
5232
7946
|
presentation?: Maybe<PolarisPresentation>;
|
|
5233
7947
|
description?: Maybe<Scalars['String']>;
|
|
7948
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5234
7949
|
};
|
|
5235
7950
|
export declare type PolarisIdeaIssueIdField = PolarisIdeaField & {
|
|
5236
7951
|
__typename?: 'PolarisIdeaIssueIdField';
|
|
@@ -5248,6 +7963,7 @@ export declare type PolarisIdeaIssueIdField = PolarisIdeaField & {
|
|
|
5248
7963
|
formula?: Maybe<Scalars['JSON']>;
|
|
5249
7964
|
presentation?: Maybe<PolarisPresentation>;
|
|
5250
7965
|
description?: Maybe<Scalars['String']>;
|
|
7966
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5251
7967
|
};
|
|
5252
7968
|
export declare type PolarisIdeaIssueTypeField = PolarisIdeaField & {
|
|
5253
7969
|
__typename?: 'PolarisIdeaIssueTypeField';
|
|
@@ -5265,6 +7981,7 @@ export declare type PolarisIdeaIssueTypeField = PolarisIdeaField & {
|
|
|
5265
7981
|
formula?: Maybe<Scalars['JSON']>;
|
|
5266
7982
|
presentation?: Maybe<PolarisPresentation>;
|
|
5267
7983
|
description?: Maybe<Scalars['String']>;
|
|
7984
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5268
7985
|
};
|
|
5269
7986
|
export declare type PolarisIdeaKeyField = PolarisIdeaField & {
|
|
5270
7987
|
__typename?: 'PolarisIdeaKeyField';
|
|
@@ -5282,6 +7999,7 @@ export declare type PolarisIdeaKeyField = PolarisIdeaField & {
|
|
|
5282
7999
|
formula?: Maybe<Scalars['JSON']>;
|
|
5283
8000
|
presentation?: Maybe<PolarisPresentation>;
|
|
5284
8001
|
description?: Maybe<Scalars['String']>;
|
|
8002
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5285
8003
|
};
|
|
5286
8004
|
export declare type PolarisIdeaLabelsField = PolarisIdeaField & {
|
|
5287
8005
|
__typename?: 'PolarisIdeaLabelsField';
|
|
@@ -5299,6 +8017,7 @@ export declare type PolarisIdeaLabelsField = PolarisIdeaField & {
|
|
|
5299
8017
|
formula?: Maybe<Scalars['JSON']>;
|
|
5300
8018
|
presentation?: Maybe<PolarisPresentation>;
|
|
5301
8019
|
description?: Maybe<Scalars['String']>;
|
|
8020
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5302
8021
|
};
|
|
5303
8022
|
export declare type PolarisIdeaLinkedIssuesField = PolarisIdeaField & {
|
|
5304
8023
|
__typename?: 'PolarisIdeaLinkedIssuesField';
|
|
@@ -5316,6 +8035,7 @@ export declare type PolarisIdeaLinkedIssuesField = PolarisIdeaField & {
|
|
|
5316
8035
|
formula?: Maybe<Scalars['JSON']>;
|
|
5317
8036
|
presentation?: Maybe<PolarisPresentation>;
|
|
5318
8037
|
description?: Maybe<Scalars['String']>;
|
|
8038
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5319
8039
|
};
|
|
5320
8040
|
export declare type PolarisIdeaLinkedIssuesProgressField = PolarisIdeaField & {
|
|
5321
8041
|
__typename?: 'PolarisIdeaLinkedIssuesProgressField';
|
|
@@ -5333,6 +8053,7 @@ export declare type PolarisIdeaLinkedIssuesProgressField = PolarisIdeaField & {
|
|
|
5333
8053
|
formula?: Maybe<Scalars['JSON']>;
|
|
5334
8054
|
presentation?: Maybe<PolarisPresentation>;
|
|
5335
8055
|
description?: Maybe<Scalars['String']>;
|
|
8056
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5336
8057
|
};
|
|
5337
8058
|
export declare type PolarisIdeaNumberField = PolarisIdeaField & {
|
|
5338
8059
|
__typename?: 'PolarisIdeaNumberField';
|
|
@@ -5350,6 +8071,7 @@ export declare type PolarisIdeaNumberField = PolarisIdeaField & {
|
|
|
5350
8071
|
formula?: Maybe<Scalars['JSON']>;
|
|
5351
8072
|
presentation?: Maybe<PolarisPresentation>;
|
|
5352
8073
|
description?: Maybe<Scalars['String']>;
|
|
8074
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5353
8075
|
};
|
|
5354
8076
|
export declare type PolarisIdeaOptionField = PolarisIdeaField & {
|
|
5355
8077
|
__typename?: 'PolarisIdeaOptionField';
|
|
@@ -5368,6 +8090,7 @@ export declare type PolarisIdeaOptionField = PolarisIdeaField & {
|
|
|
5368
8090
|
formula?: Maybe<Scalars['JSON']>;
|
|
5369
8091
|
presentation?: Maybe<PolarisPresentation>;
|
|
5370
8092
|
description?: Maybe<Scalars['String']>;
|
|
8093
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5371
8094
|
};
|
|
5372
8095
|
export declare type PolarisIdeaOptionsField = PolarisIdeaField & {
|
|
5373
8096
|
__typename?: 'PolarisIdeaOptionsField';
|
|
@@ -5386,6 +8109,27 @@ export declare type PolarisIdeaOptionsField = PolarisIdeaField & {
|
|
|
5386
8109
|
formula?: Maybe<Scalars['JSON']>;
|
|
5387
8110
|
presentation?: Maybe<PolarisPresentation>;
|
|
5388
8111
|
description?: Maybe<Scalars['String']>;
|
|
8112
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
8113
|
+
};
|
|
8114
|
+
export declare type PolarisIdeaPlayField = PolarisIdeaField & {
|
|
8115
|
+
__typename?: 'PolarisIdeaPlayField';
|
|
8116
|
+
id: Scalars['ID'];
|
|
8117
|
+
fieldId?: Maybe<Scalars['Int']>;
|
|
8118
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
8119
|
+
label: Scalars['String'];
|
|
8120
|
+
editable: Scalars['Boolean'];
|
|
8121
|
+
sortable: Scalars['Boolean'];
|
|
8122
|
+
groupable: Scalars['Boolean'];
|
|
8123
|
+
linearizable: Scalars['Boolean'];
|
|
8124
|
+
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
8125
|
+
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
8126
|
+
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
8127
|
+
formula?: Maybe<Scalars['JSON']>;
|
|
8128
|
+
presentation?: Maybe<PolarisPresentation>;
|
|
8129
|
+
description?: Maybe<Scalars['String']>;
|
|
8130
|
+
play?: Maybe<PolarisPlay>;
|
|
8131
|
+
aspect?: Maybe<Scalars['String']>;
|
|
8132
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5389
8133
|
};
|
|
5390
8134
|
export declare type PolarisIdeaSpecialField = PolarisIdeaField & {
|
|
5391
8135
|
__typename?: 'PolarisIdeaSpecialField';
|
|
@@ -5404,6 +8148,7 @@ export declare type PolarisIdeaSpecialField = PolarisIdeaField & {
|
|
|
5404
8148
|
formula?: Maybe<Scalars['JSON']>;
|
|
5405
8149
|
presentation?: Maybe<PolarisPresentation>;
|
|
5406
8150
|
description?: Maybe<Scalars['String']>;
|
|
8151
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5407
8152
|
};
|
|
5408
8153
|
export declare type PolarisIdeaStatusField = PolarisIdeaField & {
|
|
5409
8154
|
__typename?: 'PolarisIdeaStatusField';
|
|
@@ -5421,6 +8166,7 @@ export declare type PolarisIdeaStatusField = PolarisIdeaField & {
|
|
|
5421
8166
|
formula?: Maybe<Scalars['JSON']>;
|
|
5422
8167
|
presentation?: Maybe<PolarisPresentation>;
|
|
5423
8168
|
description?: Maybe<Scalars['String']>;
|
|
8169
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5424
8170
|
};
|
|
5425
8171
|
export declare type PolarisIdeaStringField = PolarisIdeaField & {
|
|
5426
8172
|
__typename?: 'PolarisIdeaStringField';
|
|
@@ -5438,6 +8184,7 @@ export declare type PolarisIdeaStringField = PolarisIdeaField & {
|
|
|
5438
8184
|
formula?: Maybe<Scalars['JSON']>;
|
|
5439
8185
|
presentation?: Maybe<PolarisPresentation>;
|
|
5440
8186
|
description?: Maybe<Scalars['String']>;
|
|
8187
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5441
8188
|
};
|
|
5442
8189
|
export declare type PolarisIdeaType = {
|
|
5443
8190
|
__typename?: 'PolarisIdeaType';
|
|
@@ -5462,6 +8209,7 @@ export declare type PolarisIdeaUserField = PolarisIdeaField & {
|
|
|
5462
8209
|
formula?: Maybe<Scalars['JSON']>;
|
|
5463
8210
|
presentation?: Maybe<PolarisPresentation>;
|
|
5464
8211
|
description?: Maybe<Scalars['String']>;
|
|
8212
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5465
8213
|
};
|
|
5466
8214
|
export declare type PolarisIdeaUsersField = PolarisIdeaField & {
|
|
5467
8215
|
__typename?: 'PolarisIdeaUsersField';
|
|
@@ -5479,6 +8227,7 @@ export declare type PolarisIdeaUsersField = PolarisIdeaField & {
|
|
|
5479
8227
|
formula?: Maybe<Scalars['JSON']>;
|
|
5480
8228
|
presentation?: Maybe<PolarisPresentation>;
|
|
5481
8229
|
description?: Maybe<Scalars['String']>;
|
|
8230
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5482
8231
|
};
|
|
5483
8232
|
export declare type PolarisIdeaVotesField = PolarisIdeaField & {
|
|
5484
8233
|
__typename?: 'PolarisIdeaVotesField';
|
|
@@ -5496,6 +8245,7 @@ export declare type PolarisIdeaVotesField = PolarisIdeaField & {
|
|
|
5496
8245
|
formula?: Maybe<Scalars['JSON']>;
|
|
5497
8246
|
presentation?: Maybe<PolarisPresentation>;
|
|
5498
8247
|
description?: Maybe<Scalars['String']>;
|
|
8248
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
5499
8249
|
};
|
|
5500
8250
|
export declare type PolarisIdeas = {
|
|
5501
8251
|
__typename?: 'PolarisIdeas';
|
|
@@ -5512,12 +8262,44 @@ export declare type PolarisInsight = {
|
|
|
5512
8262
|
created: Scalars['String'];
|
|
5513
8263
|
updated: Scalars['String'];
|
|
5514
8264
|
account?: Maybe<User>;
|
|
8265
|
+
play?: Maybe<PolarisPlay>;
|
|
8266
|
+
contribs?: Maybe<Array<PolarisPlayContribution>>;
|
|
5515
8267
|
};
|
|
5516
8268
|
export declare type PolarisIssueLinkType = {
|
|
5517
8269
|
__typename?: 'PolarisIssueLinkType';
|
|
5518
8270
|
delivery: Scalars['Int'];
|
|
5519
8271
|
merge: Scalars['Int'];
|
|
8272
|
+
datapoint: Scalars['Int'];
|
|
8273
|
+
};
|
|
8274
|
+
export declare type PolarisPlay = {
|
|
8275
|
+
__typename?: 'PolarisPlay';
|
|
8276
|
+
id: Scalars['ID'];
|
|
8277
|
+
label: Scalars['String'];
|
|
8278
|
+
kind: PolarisPlayKind;
|
|
8279
|
+
view?: Maybe<PolarisView>;
|
|
8280
|
+
fields?: Maybe<Array<PolarisIdeaPlayField>>;
|
|
8281
|
+
parameters?: Maybe<Scalars['JSON']>;
|
|
8282
|
+
contributions?: Maybe<Array<PolarisPlayContribution>>;
|
|
8283
|
+
contribution?: Maybe<PolarisPlayContribution>;
|
|
8284
|
+
};
|
|
8285
|
+
export declare type PolarisPlayContributionArgs = {
|
|
8286
|
+
id: Scalars['ID'];
|
|
8287
|
+
};
|
|
8288
|
+
export declare type PolarisPlayContribution = {
|
|
8289
|
+
__typename?: 'PolarisPlayContribution';
|
|
8290
|
+
id: Scalars['ID'];
|
|
8291
|
+
play: PolarisPlay;
|
|
8292
|
+
subject: Scalars['ID'];
|
|
8293
|
+
aaid: Scalars['String'];
|
|
8294
|
+
comment?: Maybe<PolarisComment>;
|
|
8295
|
+
amount?: Maybe<Scalars['Int']>;
|
|
8296
|
+
created: Scalars['String'];
|
|
8297
|
+
updated: Scalars['String'];
|
|
8298
|
+
appearsIn?: Maybe<PolarisInsight>;
|
|
5520
8299
|
};
|
|
8300
|
+
export declare enum PolarisPlayKind {
|
|
8301
|
+
PolarisBudgetAllocationPlay = "PolarisBudgetAllocationPlay"
|
|
8302
|
+
}
|
|
5521
8303
|
export declare type PolarisPresentation = {
|
|
5522
8304
|
__typename?: 'PolarisPresentation';
|
|
5523
8305
|
type: Scalars['String'];
|
|
@@ -5548,6 +8330,13 @@ export declare type PolarisProject = {
|
|
|
5548
8330
|
ideas: Array<PolarisIdea>;
|
|
5549
8331
|
issueLinkType: PolarisIssueLinkType;
|
|
5550
8332
|
statusCategories?: Maybe<Array<PolarisStatusCategory>>;
|
|
8333
|
+
arjConfiguration: ArjConfiguration;
|
|
8334
|
+
arjHierarchyConfiguration?: Maybe<Array<ArjHierarchyConfigurationLevel>>;
|
|
8335
|
+
plays?: Maybe<Array<PolarisPlay>>;
|
|
8336
|
+
play?: Maybe<PolarisPlay>;
|
|
8337
|
+
};
|
|
8338
|
+
export declare type PolarisProjectPlayArgs = {
|
|
8339
|
+
id: Scalars['ID'];
|
|
5551
8340
|
};
|
|
5552
8341
|
export declare type PolarisProjectTemplate = {
|
|
5553
8342
|
__typename?: 'PolarisProjectTemplate';
|
|
@@ -5715,6 +8504,7 @@ export declare type PolarisView = {
|
|
|
5715
8504
|
rank: Scalars['Int'];
|
|
5716
8505
|
comments?: Maybe<Array<PolarisComment>>;
|
|
5717
8506
|
containsArchived: Scalars['Boolean'];
|
|
8507
|
+
lastViewed?: Maybe<Array<Maybe<PolarisViewLastViewed>>>;
|
|
5718
8508
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
5719
8509
|
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
5720
8510
|
};
|
|
@@ -5759,6 +8549,12 @@ export declare type PolarisViewFilterValueInput = {
|
|
|
5759
8549
|
value?: Maybe<Scalars['Float']>;
|
|
5760
8550
|
operator?: Maybe<PolarisViewFilterOperator>;
|
|
5761
8551
|
};
|
|
8552
|
+
export declare type PolarisViewLastViewed = {
|
|
8553
|
+
__typename?: 'PolarisViewLastViewed';
|
|
8554
|
+
timestamp: Scalars['String'];
|
|
8555
|
+
aaid: Scalars['String'];
|
|
8556
|
+
account?: Maybe<User>;
|
|
8557
|
+
};
|
|
5762
8558
|
export declare type PolarisViewSet = {
|
|
5763
8559
|
__typename?: 'PolarisViewSet';
|
|
5764
8560
|
id: Scalars['ID'];
|
|
@@ -5795,16 +8591,14 @@ export declare type ProjectAvatars = {
|
|
|
5795
8591
|
};
|
|
5796
8592
|
export declare type Query = {
|
|
5797
8593
|
__typename?: 'Query';
|
|
8594
|
+
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
5798
8595
|
echo?: Maybe<Scalars['String']>;
|
|
5799
8596
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
5800
|
-
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
5801
|
-
myActivities: MyActivity;
|
|
5802
8597
|
activities?: Maybe<Activities>;
|
|
5803
8598
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
5804
8599
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
5805
8600
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
5806
8601
|
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
5807
|
-
jira?: Maybe<JiraQuery>;
|
|
5808
8602
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
5809
8603
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
5810
8604
|
apps?: Maybe<AppConnection>;
|
|
@@ -5835,9 +8629,12 @@ export declare type Query = {
|
|
|
5835
8629
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
5836
8630
|
devOpsServiceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
5837
8631
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
8632
|
+
jira?: Maybe<JiraQuery>;
|
|
5838
8633
|
appLogs?: Maybe<AppLogConnection>;
|
|
5839
8634
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
5840
8635
|
node?: Maybe<Node>;
|
|
8636
|
+
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
8637
|
+
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
5841
8638
|
team?: Maybe<TeamQuery>;
|
|
5842
8639
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
5843
8640
|
testing?: Maybe<Testing>;
|
|
@@ -5858,11 +8655,13 @@ export declare type Query = {
|
|
|
5858
8655
|
polarisIdeas?: Maybe<PolarisIdeas>;
|
|
5859
8656
|
polarisAnonymousVisitorHash?: Maybe<PolarisAnonymousVisitorHash>;
|
|
5860
8657
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
8658
|
+
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
5861
8659
|
dvcs?: Maybe<DvcsQuery>;
|
|
5862
8660
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
5863
8661
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
5864
|
-
jiraReleases?: Maybe<JiraReleases>;
|
|
5865
8662
|
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
8663
|
+
ecosystem?: Maybe<EcosystemQuery>;
|
|
8664
|
+
jiraReleases?: Maybe<JiraReleases>;
|
|
5866
8665
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
5867
8666
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
5868
8667
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
@@ -6018,6 +8817,14 @@ export declare type QueryAppLogLinesArgs = {
|
|
|
6018
8817
|
export declare type QueryNodeArgs = {
|
|
6019
8818
|
id: Scalars['ID'];
|
|
6020
8819
|
};
|
|
8820
|
+
export declare type QueryDeveloperLogAccessArgs = {
|
|
8821
|
+
contextIds: Array<Scalars['ID']>;
|
|
8822
|
+
appId: Scalars['ID'];
|
|
8823
|
+
environmentType: AppEnvironmentType;
|
|
8824
|
+
};
|
|
8825
|
+
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
8826
|
+
appId: Scalars['ID'];
|
|
8827
|
+
};
|
|
6021
8828
|
export declare type QueryTenantContextsArgs = {
|
|
6022
8829
|
cloudIds?: Maybe<Array<Scalars['ID']>>;
|
|
6023
8830
|
hostNames?: Maybe<Array<Scalars['String']>>;
|
|
@@ -6028,6 +8835,7 @@ export declare type QueryMovieArgs = {
|
|
|
6028
8835
|
export declare type QueryAppStoredEntityArgs = {
|
|
6029
8836
|
contextAri: Scalars['ID'];
|
|
6030
8837
|
key: Scalars['ID'];
|
|
8838
|
+
encrypted?: Maybe<Scalars['Boolean']>;
|
|
6031
8839
|
};
|
|
6032
8840
|
export declare type QueryAppStoredEntitiesArgs = {
|
|
6033
8841
|
contextAri: Scalars['ID'];
|
|
@@ -6076,6 +8884,7 @@ export declare type QueryPolarisIdeasArgs = {
|
|
|
6076
8884
|
project: Scalars['ID'];
|
|
6077
8885
|
fieldKeys?: Maybe<Array<Scalars['String']>>;
|
|
6078
8886
|
expand?: Maybe<Array<Scalars['String']>>;
|
|
8887
|
+
jql?: Maybe<Scalars['String']>;
|
|
6079
8888
|
};
|
|
6080
8889
|
export declare type QueryPolarisAnonymousVisitorHashArgs = {
|
|
6081
8890
|
hash: Scalars['String'];
|
|
@@ -6083,6 +8892,10 @@ export declare type QueryPolarisAnonymousVisitorHashArgs = {
|
|
|
6083
8892
|
export declare type QueryPolarisAnonymousVisitorHashByIdArgs = {
|
|
6084
8893
|
id: Scalars['ID'];
|
|
6085
8894
|
};
|
|
8895
|
+
export declare type QueryPolarisLinkedDeliveryTicketsArgs = {
|
|
8896
|
+
project: Scalars['ID'];
|
|
8897
|
+
issueIds?: Maybe<Array<Scalars['Int']>>;
|
|
8898
|
+
};
|
|
6086
8899
|
export declare type QueryAppActiveTunnelsArgs = {
|
|
6087
8900
|
appId: Scalars['ID'];
|
|
6088
8901
|
environmentId: Scalars['ID'];
|
|
@@ -6516,6 +9329,7 @@ export declare type SetAppStoredEntityMutationInput = {
|
|
|
6516
9329
|
key: Scalars['ID'];
|
|
6517
9330
|
contextAri: Scalars['ID'];
|
|
6518
9331
|
value: Scalars['JSON'];
|
|
9332
|
+
encrypted?: Maybe<Scalars['Boolean']>;
|
|
6519
9333
|
};
|
|
6520
9334
|
export declare type SetAppStoredEntityPayload = Payload & {
|
|
6521
9335
|
__typename?: 'SetAppStoredEntityPayload';
|
|
@@ -6529,7 +9343,6 @@ export declare type SetColumnLimitInput = {
|
|
|
6529
9343
|
};
|
|
6530
9344
|
export declare type SetColumnLimitOutput = MutationResponse & {
|
|
6531
9345
|
__typename?: 'SetColumnLimitOutput';
|
|
6532
|
-
updatedColumn?: Maybe<Column>;
|
|
6533
9346
|
columns?: Maybe<Array<Column>>;
|
|
6534
9347
|
statusCode: Scalars['Int'];
|
|
6535
9348
|
success: Scalars['Boolean'];
|
|
@@ -6556,6 +9369,11 @@ export declare type SetExternalAuthCredentialsInput = {
|
|
|
6556
9369
|
serviceKey: Scalars['String'];
|
|
6557
9370
|
credentials: ExternalAuthCredentialsInput;
|
|
6558
9371
|
};
|
|
9372
|
+
export declare type SetExternalAuthCredentialsPayload = Payload & {
|
|
9373
|
+
__typename?: 'SetExternalAuthCredentialsPayload';
|
|
9374
|
+
success: Scalars['Boolean'];
|
|
9375
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9376
|
+
};
|
|
6559
9377
|
export declare type SetPolarisProjectOnboardedInput = {
|
|
6560
9378
|
projectId: Scalars['ID'];
|
|
6561
9379
|
value: Scalars['Boolean'];
|
|
@@ -6639,6 +9457,17 @@ export declare type SoftwareCard = {
|
|
|
6639
9457
|
dueDate?: Maybe<Scalars['String']>;
|
|
6640
9458
|
fixVersionsIds: Array<Scalars['ID']>;
|
|
6641
9459
|
};
|
|
9460
|
+
export declare type SoftwareCardChildrenInfo = {
|
|
9461
|
+
__typename?: 'SoftwareCardChildrenInfo';
|
|
9462
|
+
todoStats?: Maybe<SoftwareCardChildrenInfoStats>;
|
|
9463
|
+
inProgressStats?: Maybe<SoftwareCardChildrenInfoStats>;
|
|
9464
|
+
doneStats?: Maybe<SoftwareCardChildrenInfoStats>;
|
|
9465
|
+
lastColumnIssueStats?: Maybe<SoftwareCardChildrenInfoStats>;
|
|
9466
|
+
};
|
|
9467
|
+
export declare type SoftwareCardChildrenInfoStats = {
|
|
9468
|
+
__typename?: 'SoftwareCardChildrenInfoStats';
|
|
9469
|
+
cardCount?: Maybe<Scalars['Int']>;
|
|
9470
|
+
};
|
|
6642
9471
|
export declare type SoftwareCardTransition = {
|
|
6643
9472
|
__typename?: 'SoftwareCardTransition';
|
|
6644
9473
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -6648,6 +9477,18 @@ export declare type SoftwareCardTransition = {
|
|
|
6648
9477
|
cardType: CardType;
|
|
6649
9478
|
isGlobal?: Maybe<Scalars['Boolean']>;
|
|
6650
9479
|
isInitial?: Maybe<Scalars['Boolean']>;
|
|
9480
|
+
hasConditions?: Maybe<Scalars['Boolean']>;
|
|
9481
|
+
};
|
|
9482
|
+
export declare type SoftwareCardTypeTransition = {
|
|
9483
|
+
__typename?: 'SoftwareCardTypeTransition';
|
|
9484
|
+
transitionId?: Maybe<Scalars['ID']>;
|
|
9485
|
+
name: Scalars['String'];
|
|
9486
|
+
status?: Maybe<CardStatus>;
|
|
9487
|
+
originStatus?: Maybe<CardStatus>;
|
|
9488
|
+
cardType: CardType;
|
|
9489
|
+
isGlobal?: Maybe<Scalars['Boolean']>;
|
|
9490
|
+
isInitial?: Maybe<Scalars['Boolean']>;
|
|
9491
|
+
hasConditions?: Maybe<Scalars['Boolean']>;
|
|
6651
9492
|
};
|
|
6652
9493
|
export declare type SoftwareCardsDestination = {
|
|
6653
9494
|
destination?: Maybe<SoftwareCardsDestinationEnum>;
|
|
@@ -6774,17 +9615,10 @@ export declare type StartSprintInput = {
|
|
|
6774
9615
|
sprintId: Scalars['ID'];
|
|
6775
9616
|
name: Scalars['String'];
|
|
6776
9617
|
goal?: Maybe<Scalars['String']>;
|
|
6777
|
-
startDate: Scalars['
|
|
6778
|
-
endDate: Scalars['
|
|
6779
|
-
};
|
|
6780
|
-
export declare type Subscription = {
|
|
6781
|
-
__typename?: 'Subscription';
|
|
6782
|
-
onMovieUpdate?: Maybe<TestingMovie>;
|
|
6783
|
-
};
|
|
6784
|
-
export declare type SubscriptionOnMovieUpdateArgs = {
|
|
6785
|
-
cloudId: Scalars['ID'];
|
|
9618
|
+
startDate: Scalars['String'];
|
|
9619
|
+
endDate: Scalars['String'];
|
|
6786
9620
|
};
|
|
6787
|
-
export declare type SupportRequest = {
|
|
9621
|
+
export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
6788
9622
|
__typename?: 'SupportRequest';
|
|
6789
9623
|
id: Scalars['ID'];
|
|
6790
9624
|
summary?: Maybe<Scalars['String']>;
|
|
@@ -6808,9 +9642,20 @@ export declare type SupportRequestStatusesArgs = {
|
|
|
6808
9642
|
offset?: Maybe<Scalars['Int']>;
|
|
6809
9643
|
size?: Maybe<Scalars['Int']>;
|
|
6810
9644
|
};
|
|
9645
|
+
export declare type SupportRequestAddCommentInput = {
|
|
9646
|
+
message: Scalars['String'];
|
|
9647
|
+
issueKey: Scalars['String'];
|
|
9648
|
+
};
|
|
9649
|
+
export declare type SupportRequestCatalogMutationApi = {
|
|
9650
|
+
__typename?: 'SupportRequestCatalogMutationApi';
|
|
9651
|
+
addComment?: Maybe<SupportRequestComment>;
|
|
9652
|
+
};
|
|
9653
|
+
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
9654
|
+
input?: Maybe<SupportRequestAddCommentInput>;
|
|
9655
|
+
};
|
|
6811
9656
|
export declare type SupportRequestCatalogQueryApi = {
|
|
6812
9657
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
6813
|
-
me?: Maybe<
|
|
9658
|
+
me?: Maybe<SupportRequestPage>;
|
|
6814
9659
|
supportRequest?: Maybe<SupportRequest>;
|
|
6815
9660
|
};
|
|
6816
9661
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
@@ -6830,6 +9675,16 @@ export declare type SupportRequestComments = {
|
|
|
6830
9675
|
lastPage: Scalars['Boolean'];
|
|
6831
9676
|
values: Array<SupportRequestComment>;
|
|
6832
9677
|
};
|
|
9678
|
+
export declare type SupportRequestCommonRequest = {
|
|
9679
|
+
id: Scalars['ID'];
|
|
9680
|
+
summary?: Maybe<Scalars['String']>;
|
|
9681
|
+
description: Scalars['String'];
|
|
9682
|
+
requestTypeName: Scalars['String'];
|
|
9683
|
+
createdDate: SupportRequestDisplayableDateTime;
|
|
9684
|
+
status: SupportRequestStatus;
|
|
9685
|
+
reporter: SupportRequestUser;
|
|
9686
|
+
participants: Array<SupportRequestUser>;
|
|
9687
|
+
};
|
|
6833
9688
|
export declare type SupportRequestContactRelation = {
|
|
6834
9689
|
__typename?: 'SupportRequestContactRelation';
|
|
6835
9690
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
@@ -6851,6 +9706,24 @@ export declare type SupportRequestFieldValue = {
|
|
|
6851
9706
|
__typename?: 'SupportRequestFieldValue';
|
|
6852
9707
|
value: Scalars['String'];
|
|
6853
9708
|
};
|
|
9709
|
+
export declare type SupportRequestHierarchyRequest = SupportRequestCommonRequest & {
|
|
9710
|
+
__typename?: 'SupportRequestHierarchyRequest';
|
|
9711
|
+
id: Scalars['ID'];
|
|
9712
|
+
summary?: Maybe<Scalars['String']>;
|
|
9713
|
+
description: Scalars['String'];
|
|
9714
|
+
requestTypeName: Scalars['String'];
|
|
9715
|
+
createdDate: SupportRequestDisplayableDateTime;
|
|
9716
|
+
status: SupportRequestStatus;
|
|
9717
|
+
reporter: SupportRequestUser;
|
|
9718
|
+
participants: Array<SupportRequestUser>;
|
|
9719
|
+
parent?: Maybe<SupportRequestHierarchyRequest>;
|
|
9720
|
+
children?: Maybe<Array<SupportRequestHierarchyRequest>>;
|
|
9721
|
+
};
|
|
9722
|
+
export declare type SupportRequestHierarchyRequests = {
|
|
9723
|
+
__typename?: 'SupportRequestHierarchyRequests';
|
|
9724
|
+
total: Scalars['Int'];
|
|
9725
|
+
page: Array<SupportRequestHierarchyRequest>;
|
|
9726
|
+
};
|
|
6854
9727
|
export declare type SupportRequestNamedContactRelation = {
|
|
6855
9728
|
__typename?: 'SupportRequestNamedContactRelation';
|
|
6856
9729
|
orgId?: Maybe<Scalars['String']>;
|
|
@@ -6863,6 +9736,29 @@ export declare type SupportRequestNamedContactRelations = {
|
|
|
6863
9736
|
cloudEnterpriseRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
6864
9737
|
premierSupportRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
6865
9738
|
};
|
|
9739
|
+
export declare type SupportRequestPage = {
|
|
9740
|
+
__typename?: 'SupportRequestPage';
|
|
9741
|
+
profile?: Maybe<SupportRequestUser>;
|
|
9742
|
+
requests?: Maybe<SupportRequests>;
|
|
9743
|
+
migrationRequests?: Maybe<SupportRequestHierarchyRequests>;
|
|
9744
|
+
namedContactRelations?: Maybe<SupportRequestNamedContactRelations>;
|
|
9745
|
+
};
|
|
9746
|
+
export declare type SupportRequestPageRequestsArgs = {
|
|
9747
|
+
searchTerm?: Maybe<Scalars['String']>;
|
|
9748
|
+
ownership?: Maybe<SupportRequestQueryOwnership>;
|
|
9749
|
+
status?: Maybe<SupportRequestQueryStatusCategory>;
|
|
9750
|
+
offset?: Scalars['Int'];
|
|
9751
|
+
size?: Scalars['Int'];
|
|
9752
|
+
project?: Maybe<Scalars['String']>;
|
|
9753
|
+
requestType?: Maybe<Scalars['String']>;
|
|
9754
|
+
backend?: Maybe<Array<Scalars['String']>>;
|
|
9755
|
+
};
|
|
9756
|
+
export declare type SupportRequestPageMigrationRequestsArgs = {
|
|
9757
|
+
ownership?: Maybe<SupportRequestQueryOwnership>;
|
|
9758
|
+
status?: Maybe<SupportRequestQueryStatusCategory>;
|
|
9759
|
+
offset?: Scalars['Int'];
|
|
9760
|
+
size?: Scalars['Int'];
|
|
9761
|
+
};
|
|
6866
9762
|
export declare enum SupportRequestQueryOwnership {
|
|
6867
9763
|
Reporter = "REPORTER",
|
|
6868
9764
|
Participant = "PARTICIPANT"
|
|
@@ -6896,24 +9792,10 @@ export declare type SupportRequestTicket = {
|
|
|
6896
9792
|
};
|
|
6897
9793
|
export declare type SupportRequestUser = {
|
|
6898
9794
|
__typename?: 'SupportRequestUser';
|
|
6899
|
-
|
|
6900
|
-
displayName: Scalars['String'];
|
|
9795
|
+
user?: Maybe<User>;
|
|
6901
9796
|
username?: Maybe<Scalars['String']>;
|
|
6902
9797
|
email?: Maybe<Scalars['String']>;
|
|
6903
|
-
|
|
6904
|
-
impersonating?: Maybe<Scalars['Boolean']>;
|
|
6905
|
-
requests?: Maybe<SupportRequests>;
|
|
6906
|
-
namedContactRelations?: Maybe<SupportRequestNamedContactRelations>;
|
|
6907
|
-
};
|
|
6908
|
-
export declare type SupportRequestUserRequestsArgs = {
|
|
6909
|
-
searchTerm?: Maybe<Scalars['String']>;
|
|
6910
|
-
ownership?: Maybe<SupportRequestQueryOwnership>;
|
|
6911
|
-
status?: Maybe<SupportRequestQueryStatusCategory>;
|
|
6912
|
-
offset?: Scalars['Int'];
|
|
6913
|
-
size?: Scalars['Int'];
|
|
6914
|
-
project?: Maybe<Scalars['String']>;
|
|
6915
|
-
requestType?: Maybe<Scalars['String']>;
|
|
6916
|
-
backend?: Maybe<Array<Scalars['String']>>;
|
|
9798
|
+
displayName?: Maybe<Scalars['String']>;
|
|
6917
9799
|
};
|
|
6918
9800
|
export declare type SupportRequests = {
|
|
6919
9801
|
__typename?: 'SupportRequests';
|
|
@@ -6999,6 +9881,18 @@ export declare type UnarchivePolarisInsightsPayload = Payload & {
|
|
|
6999
9881
|
success: Scalars['Boolean'];
|
|
7000
9882
|
errors?: Maybe<Array<MutationError>>;
|
|
7001
9883
|
};
|
|
9884
|
+
export declare type UnassignIssueParentInput = {
|
|
9885
|
+
boardId: Scalars['ID'];
|
|
9886
|
+
issueIds: Array<Scalars['ID']>;
|
|
9887
|
+
};
|
|
9888
|
+
export declare type UnassignIssueParentOutput = MutationResponse & {
|
|
9889
|
+
__typename?: 'UnassignIssueParentOutput';
|
|
9890
|
+
boardScope?: Maybe<BoardScope>;
|
|
9891
|
+
statusCode: Scalars['Int'];
|
|
9892
|
+
success: Scalars['Boolean'];
|
|
9893
|
+
message: Scalars['String'];
|
|
9894
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
9895
|
+
};
|
|
7002
9896
|
export declare type UnlinkExternalSourceInput = {
|
|
7003
9897
|
cloudId: Scalars['ID'];
|
|
7004
9898
|
ecosystemAppId: Scalars['ID'];
|
|
@@ -7025,6 +9919,19 @@ export declare type UpdateAppDetailsResponse = Payload & {
|
|
|
7025
9919
|
errors?: Maybe<Array<MutationError>>;
|
|
7026
9920
|
app?: Maybe<App>;
|
|
7027
9921
|
};
|
|
9922
|
+
export declare type UpdateAppHostServiceScopesInput = {
|
|
9923
|
+
appId: Scalars['ID'];
|
|
9924
|
+
environmentKey: Scalars['String'];
|
|
9925
|
+
serviceId: Scalars['ID'];
|
|
9926
|
+
scopes?: Maybe<Array<Scalars['String']>>;
|
|
9927
|
+
};
|
|
9928
|
+
export declare type UpdateAppHostServiceScopesResponsePayload = Payload & {
|
|
9929
|
+
__typename?: 'UpdateAppHostServiceScopesResponsePayload';
|
|
9930
|
+
success: Scalars['Boolean'];
|
|
9931
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9932
|
+
app?: Maybe<App>;
|
|
9933
|
+
appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
|
|
9934
|
+
};
|
|
7028
9935
|
export declare type UpdateAtlassianOAuthClientInput = {
|
|
7029
9936
|
clientID: Scalars['ID'];
|
|
7030
9937
|
callbacks?: Maybe<Array<Scalars['String']>>;
|
|
@@ -7119,7 +10026,6 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
7119
10026
|
ownerId?: Maybe<Scalars['ID']>;
|
|
7120
10027
|
componentType?: Maybe<CompassComponentType>;
|
|
7121
10028
|
importance?: Maybe<CompassScorecardImportance>;
|
|
7122
|
-
criterias?: Maybe<Array<UpdateCompassScorecardCriteriaInput>>;
|
|
7123
10029
|
};
|
|
7124
10030
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
7125
10031
|
__typename?: 'UpdateCompassScorecardPayload';
|
|
@@ -7218,6 +10124,17 @@ export declare type UpdateDevOpsServiceRelationshipPayload = Payload & {
|
|
|
7218
10124
|
errors?: Maybe<Array<MutationError>>;
|
|
7219
10125
|
serviceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
7220
10126
|
};
|
|
10127
|
+
export declare type UpdateDeveloperLogAccessInput = {
|
|
10128
|
+
contextIds: Array<Scalars['ID']>;
|
|
10129
|
+
appId: Scalars['ID'];
|
|
10130
|
+
environmentType: AppEnvironmentType;
|
|
10131
|
+
shouldHaveAccess: Scalars['Boolean'];
|
|
10132
|
+
};
|
|
10133
|
+
export declare type UpdateDeveloperLogAccessPayload = Payload & {
|
|
10134
|
+
__typename?: 'UpdateDeveloperLogAccessPayload';
|
|
10135
|
+
success: Scalars['Boolean'];
|
|
10136
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10137
|
+
};
|
|
7221
10138
|
export declare type UpdateJiraProjectAndOpsgenieTeamRelationshipInput = {
|
|
7222
10139
|
id: Scalars['ID'];
|
|
7223
10140
|
revision: Scalars['ID'];
|
|
@@ -7300,6 +10217,7 @@ export declare type UpdatePolarisFieldOptionWeightPayload = Payload & {
|
|
|
7300
10217
|
export declare type UpdatePolarisIdeaInput = {
|
|
7301
10218
|
archived?: Maybe<Scalars['Boolean']>;
|
|
7302
10219
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
10220
|
+
lastInsightsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
7303
10221
|
};
|
|
7304
10222
|
export declare type UpdatePolarisIdeaPayload = Payload & {
|
|
7305
10223
|
__typename?: 'UpdatePolarisIdeaPayload';
|
|
@@ -7317,6 +10235,17 @@ export declare type UpdatePolarisInsightPayload = Payload & {
|
|
|
7317
10235
|
errors?: Maybe<Array<MutationError>>;
|
|
7318
10236
|
node?: Maybe<PolarisInsight>;
|
|
7319
10237
|
};
|
|
10238
|
+
export declare type UpdatePolarisPlayContribution = {
|
|
10239
|
+
amount?: Maybe<Scalars['Int']>;
|
|
10240
|
+
comment?: Maybe<Scalars['ID']>;
|
|
10241
|
+
content?: Maybe<Scalars['JSON']>;
|
|
10242
|
+
};
|
|
10243
|
+
export declare type UpdatePolarisPlayContributionPayload = {
|
|
10244
|
+
__typename?: 'UpdatePolarisPlayContributionPayload';
|
|
10245
|
+
success: Scalars['Boolean'];
|
|
10246
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10247
|
+
node?: Maybe<PolarisPlayContribution>;
|
|
10248
|
+
};
|
|
7320
10249
|
export declare type UpdatePolarisSnippetInput = {
|
|
7321
10250
|
id?: Maybe<Scalars['ID']>;
|
|
7322
10251
|
oauthClientId?: Maybe<Scalars['String']>;
|
|
@@ -7353,6 +10282,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
7353
10282
|
sort?: Maybe<Array<PolarisSortFieldInput>>;
|
|
7354
10283
|
filter?: Maybe<Array<PolarisViewFilterInput>>;
|
|
7355
10284
|
hidden?: Maybe<Array<Scalars['ID']>>;
|
|
10285
|
+
lastViewedTimestamp?: Maybe<Scalars['String']>;
|
|
7356
10286
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
7357
10287
|
};
|
|
7358
10288
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
@@ -7410,6 +10340,43 @@ export declare type UserConsentExtensionUser = {
|
|
|
7410
10340
|
__typename?: 'UserConsentExtensionUser';
|
|
7411
10341
|
aaid: Scalars['ID'];
|
|
7412
10342
|
};
|
|
10343
|
+
export declare type UserGrant = {
|
|
10344
|
+
__typename?: 'UserGrant';
|
|
10345
|
+
id: Scalars['ID'];
|
|
10346
|
+
accountId: Scalars['ID'];
|
|
10347
|
+
oauthClientId: Scalars['ID'];
|
|
10348
|
+
appId: Scalars['ID'];
|
|
10349
|
+
appDetails?: Maybe<UserGrantAppDetails>;
|
|
10350
|
+
scopes: Array<Maybe<AppHostServiceScope>>;
|
|
10351
|
+
};
|
|
10352
|
+
export declare type UserGrantAppDetails = {
|
|
10353
|
+
__typename?: 'UserGrantAppDetails';
|
|
10354
|
+
name: Scalars['String'];
|
|
10355
|
+
description: Scalars['String'];
|
|
10356
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
10357
|
+
vendorName?: Maybe<Scalars['String']>;
|
|
10358
|
+
contactLink?: Maybe<Scalars['String']>;
|
|
10359
|
+
privacyPolicyLink?: Maybe<Scalars['String']>;
|
|
10360
|
+
termsOfServiceLink?: Maybe<Scalars['String']>;
|
|
10361
|
+
};
|
|
10362
|
+
export declare type UserGrantConnection = {
|
|
10363
|
+
__typename?: 'UserGrantConnection';
|
|
10364
|
+
edges?: Maybe<Array<Maybe<UserGrantEdge>>>;
|
|
10365
|
+
nodes?: Maybe<Array<Maybe<UserGrant>>>;
|
|
10366
|
+
pageInfo: UserGrantPageInfo;
|
|
10367
|
+
};
|
|
10368
|
+
export declare type UserGrantEdge = {
|
|
10369
|
+
__typename?: 'UserGrantEdge';
|
|
10370
|
+
cursor: Scalars['String'];
|
|
10371
|
+
node?: Maybe<UserGrant>;
|
|
10372
|
+
};
|
|
10373
|
+
export declare type UserGrantPageInfo = {
|
|
10374
|
+
__typename?: 'UserGrantPageInfo';
|
|
10375
|
+
hasNextPage: Scalars['Boolean'];
|
|
10376
|
+
hasPreviousPage: Scalars['Boolean'];
|
|
10377
|
+
startCursor?: Maybe<Scalars['String']>;
|
|
10378
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
10379
|
+
};
|
|
7413
10380
|
export declare type WatchMarketplaceAppPayload = Payload & {
|
|
7414
10381
|
__typename?: 'WatchMarketplaceAppPayload';
|
|
7415
10382
|
success: Scalars['Boolean'];
|