@forge/cli-shared 6.4.2-next.3 → 6.5.0-next.4
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 +6 -0
- package/out/graphql/graphql-types.d.ts +248 -43
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +32 -22
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1477,6 +1477,7 @@ export declare type AppStorageSqlDatabaseColumn = {
|
|
|
1477
1477
|
type: Scalars['String']['output'];
|
|
1478
1478
|
};
|
|
1479
1479
|
export declare type AppStorageSqlDatabaseInput = {
|
|
1480
|
+
appId: Scalars['ID']['input'];
|
|
1480
1481
|
installationId: Scalars['ID']['input'];
|
|
1481
1482
|
};
|
|
1482
1483
|
export declare type AppStorageSqlDatabaseMigration = {
|
|
@@ -5409,6 +5410,7 @@ export declare type CompassCustomFieldFilterInput = {
|
|
|
5409
5410
|
multiselect?: InputMaybe<CompassCustomMultiselectFieldFilterInput>;
|
|
5410
5411
|
number?: InputMaybe<CompassCustomNumberFieldFilterInput>;
|
|
5411
5412
|
singleSelect?: InputMaybe<CompassCustomSingleSelectFieldFilterInput>;
|
|
5413
|
+
text?: InputMaybe<CompassCustomTextFieldFilterInput>;
|
|
5412
5414
|
user?: InputMaybe<CompassCustomUserFieldFilterInput>;
|
|
5413
5415
|
};
|
|
5414
5416
|
export declare type CompassCustomFieldInput = {
|
|
@@ -5560,6 +5562,15 @@ export declare type CompassCustomTextFieldDefinition = CompassCustomFieldDefinit
|
|
|
5560
5562
|
id: Scalars['ID']['output'];
|
|
5561
5563
|
name?: Maybe<Scalars['String']['output']>;
|
|
5562
5564
|
};
|
|
5565
|
+
export declare type CompassCustomTextFieldFilter = CompassCustomFieldFilter & {
|
|
5566
|
+
__typename?: 'CompassCustomTextFieldFilter';
|
|
5567
|
+
comparator: Scalars['String']['output'];
|
|
5568
|
+
customFieldId: Scalars['String']['output'];
|
|
5569
|
+
};
|
|
5570
|
+
export declare type CompassCustomTextFieldFilterInput = {
|
|
5571
|
+
comparator?: InputMaybe<CustomTextFieldInputComparators>;
|
|
5572
|
+
customFieldId: Scalars['String']['input'];
|
|
5573
|
+
};
|
|
5563
5574
|
export declare type CompassCustomTextFieldInput = {
|
|
5564
5575
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
5565
5576
|
definitionId: Scalars['ID']['input'];
|
|
@@ -18058,6 +18069,10 @@ export declare enum CustomSingleSelectFieldInputComparators {
|
|
|
18058
18069
|
IsSet = "IS_SET",
|
|
18059
18070
|
NotSet = "NOT_SET"
|
|
18060
18071
|
}
|
|
18072
|
+
export declare enum CustomTextFieldInputComparators {
|
|
18073
|
+
IsSet = "IS_SET",
|
|
18074
|
+
NotSet = "NOT_SET"
|
|
18075
|
+
}
|
|
18061
18076
|
export declare type CustomUiTunnelDefinition = {
|
|
18062
18077
|
__typename?: 'CustomUITunnelDefinition';
|
|
18063
18078
|
resourceKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -18895,7 +18910,6 @@ export declare type CustomerServiceTemplateFormEdge = {
|
|
|
18895
18910
|
export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
|
|
18896
18911
|
export declare type CustomerServiceTemplateFormUpdateInput = {
|
|
18897
18912
|
defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
|
|
18898
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
18899
18913
|
};
|
|
18900
18914
|
export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
|
|
18901
18915
|
__typename?: 'CustomerServiceTemplateFormUpdatePayload';
|
|
@@ -23009,6 +23023,19 @@ export declare type FilteredPrincipalSubjectKey = {
|
|
|
23009
23023
|
id?: Maybe<Scalars['String']['output']>;
|
|
23010
23024
|
permissionDisplayType: PermissionDisplayType;
|
|
23011
23025
|
};
|
|
23026
|
+
export declare type FireboltAuthor = {
|
|
23027
|
+
__typename?: 'FireboltAuthor';
|
|
23028
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
23029
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
23030
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
23031
|
+
};
|
|
23032
|
+
export declare type FireboltBook = {
|
|
23033
|
+
__typename?: 'FireboltBook';
|
|
23034
|
+
author?: Maybe<FireboltAuthor>;
|
|
23035
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
23036
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
23037
|
+
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
23038
|
+
};
|
|
23012
23039
|
export declare type FollowUserInput = {
|
|
23013
23040
|
accountId: Scalars['String']['input'];
|
|
23014
23041
|
};
|
|
@@ -28143,6 +28170,10 @@ export declare type GraphStore = {
|
|
|
28143
28170
|
sprintRetrospectiveWhiteboard?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection>;
|
|
28144
28171
|
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
28145
28172
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
28173
|
+
teamConnectedToConfluenceSpace?: Maybe<GraphStoreSimplifiedTeamConnectedToConfluenceSpaceConnection>;
|
|
28174
|
+
teamConnectedToConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToConfluenceSpaceInverseConnection>;
|
|
28175
|
+
teamConnectedToJiraProject?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectConnection>;
|
|
28176
|
+
teamConnectedToJiraProjectInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectInverseConnection>;
|
|
28146
28177
|
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
28147
28178
|
teamOwnsComponentInverse?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseConnection>;
|
|
28148
28179
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
@@ -28551,6 +28582,7 @@ export declare type GraphStoreContentReferencedEntityRelationshipArgs = {
|
|
|
28551
28582
|
id: Scalars['ID']['input'];
|
|
28552
28583
|
};
|
|
28553
28584
|
export declare type GraphStoreCypherQueryArgs = {
|
|
28585
|
+
additionalInputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
28554
28586
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28555
28587
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28556
28588
|
query: Scalars['String']['input'];
|
|
@@ -30377,6 +30409,34 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardRelationshipArgs = {
|
|
|
30377
30409
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30378
30410
|
id: Scalars['ID']['input'];
|
|
30379
30411
|
};
|
|
30412
|
+
export declare type GraphStoreTeamConnectedToConfluenceSpaceArgs = {
|
|
30413
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30414
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30415
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30416
|
+
id: Scalars['ID']['input'];
|
|
30417
|
+
sort?: InputMaybe<GraphStoreTeamConnectedToConfluenceSpaceSortInput>;
|
|
30418
|
+
};
|
|
30419
|
+
export declare type GraphStoreTeamConnectedToConfluenceSpaceInverseArgs = {
|
|
30420
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30421
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30422
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30423
|
+
id: Scalars['ID']['input'];
|
|
30424
|
+
sort?: InputMaybe<GraphStoreTeamConnectedToConfluenceSpaceSortInput>;
|
|
30425
|
+
};
|
|
30426
|
+
export declare type GraphStoreTeamConnectedToJiraProjectArgs = {
|
|
30427
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30428
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30429
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30430
|
+
id: Scalars['ID']['input'];
|
|
30431
|
+
sort?: InputMaybe<GraphStoreTeamConnectedToJiraProjectSortInput>;
|
|
30432
|
+
};
|
|
30433
|
+
export declare type GraphStoreTeamConnectedToJiraProjectInverseArgs = {
|
|
30434
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30435
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30436
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30437
|
+
id: Scalars['ID']['input'];
|
|
30438
|
+
sort?: InputMaybe<GraphStoreTeamConnectedToJiraProjectSortInput>;
|
|
30439
|
+
};
|
|
30380
30440
|
export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
30381
30441
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30382
30442
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39240,6 +39300,70 @@ export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge = {
|
|
|
39240
39300
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion>;
|
|
39241
39301
|
};
|
|
39242
39302
|
export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion = ConfluenceWhiteboard;
|
|
39303
|
+
export declare type GraphStoreSimplifiedTeamConnectedToConfluenceSpaceConnection = HasPageInfo & HasTotal & {
|
|
39304
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToConfluenceSpaceConnection';
|
|
39305
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToConfluenceSpaceEdge>>>;
|
|
39306
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39307
|
+
pageInfo: PageInfo;
|
|
39308
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39309
|
+
};
|
|
39310
|
+
export declare type GraphStoreSimplifiedTeamConnectedToConfluenceSpaceEdge = {
|
|
39311
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToConfluenceSpaceEdge';
|
|
39312
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39313
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39314
|
+
id: Scalars['ID']['output'];
|
|
39315
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39316
|
+
node?: Maybe<GraphStoreSimplifiedTeamConnectedToConfluenceSpaceUnion>;
|
|
39317
|
+
};
|
|
39318
|
+
export declare type GraphStoreSimplifiedTeamConnectedToConfluenceSpaceInverseConnection = HasPageInfo & HasTotal & {
|
|
39319
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToConfluenceSpaceInverseConnection';
|
|
39320
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToConfluenceSpaceInverseEdge>>>;
|
|
39321
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39322
|
+
pageInfo: PageInfo;
|
|
39323
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39324
|
+
};
|
|
39325
|
+
export declare type GraphStoreSimplifiedTeamConnectedToConfluenceSpaceInverseEdge = {
|
|
39326
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToConfluenceSpaceInverseEdge';
|
|
39327
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39328
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39329
|
+
id: Scalars['ID']['output'];
|
|
39330
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39331
|
+
node?: Maybe<GraphStoreSimplifiedTeamConnectedToConfluenceSpaceInverseUnion>;
|
|
39332
|
+
};
|
|
39333
|
+
export declare type GraphStoreSimplifiedTeamConnectedToConfluenceSpaceInverseUnion = TeamV2;
|
|
39334
|
+
export declare type GraphStoreSimplifiedTeamConnectedToConfluenceSpaceUnion = ConfluenceSpace;
|
|
39335
|
+
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectConnection = HasPageInfo & HasTotal & {
|
|
39336
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectConnection';
|
|
39337
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectEdge>>>;
|
|
39338
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39339
|
+
pageInfo: PageInfo;
|
|
39340
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39341
|
+
};
|
|
39342
|
+
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectEdge = {
|
|
39343
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectEdge';
|
|
39344
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39345
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39346
|
+
id: Scalars['ID']['output'];
|
|
39347
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39348
|
+
node?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectUnion>;
|
|
39349
|
+
};
|
|
39350
|
+
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
39351
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectInverseConnection';
|
|
39352
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectInverseEdge>>>;
|
|
39353
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39354
|
+
pageInfo: PageInfo;
|
|
39355
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39356
|
+
};
|
|
39357
|
+
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectInverseEdge = {
|
|
39358
|
+
__typename?: 'GraphStoreSimplifiedTeamConnectedToJiraProjectInverseEdge';
|
|
39359
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39360
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39361
|
+
id: Scalars['ID']['output'];
|
|
39362
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39363
|
+
node?: Maybe<GraphStoreSimplifiedTeamConnectedToJiraProjectInverseUnion>;
|
|
39364
|
+
};
|
|
39365
|
+
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectInverseUnion = TeamV2;
|
|
39366
|
+
export declare type GraphStoreSimplifiedTeamConnectedToJiraProjectUnion = JiraProject;
|
|
39243
39367
|
export declare type GraphStoreSimplifiedTeamOwnsComponentConnection = HasPageInfo & {
|
|
39244
39368
|
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentConnection';
|
|
39245
39369
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentEdge>>>;
|
|
@@ -40264,6 +40388,18 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardSortInput = {
|
|
|
40264
40388
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40265
40389
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40266
40390
|
};
|
|
40391
|
+
export declare type GraphStoreTeamConnectedToConfluenceSpaceSortInput = {
|
|
40392
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40393
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40394
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40395
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40396
|
+
};
|
|
40397
|
+
export declare type GraphStoreTeamConnectedToJiraProjectSortInput = {
|
|
40398
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40399
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40400
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40401
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40402
|
+
};
|
|
40267
40403
|
export declare type GraphStoreTeamOwnsComponentSortInput = {
|
|
40268
40404
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40269
40405
|
};
|
|
@@ -42444,10 +42580,15 @@ export declare type InfluentsNotificationAction = {
|
|
|
42444
42580
|
};
|
|
42445
42581
|
export declare type InfluentsNotificationActor = {
|
|
42446
42582
|
__typename?: 'InfluentsNotificationActor';
|
|
42583
|
+
actorType?: Maybe<InfluentsNotificationActorType>;
|
|
42447
42584
|
ari?: Maybe<Scalars['String']['output']>;
|
|
42448
42585
|
avatarURL?: Maybe<Scalars['String']['output']>;
|
|
42449
42586
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
42450
42587
|
};
|
|
42588
|
+
export declare enum InfluentsNotificationActorType {
|
|
42589
|
+
Animated = "animated",
|
|
42590
|
+
Url = "url"
|
|
42591
|
+
}
|
|
42451
42592
|
export declare type InfluentsNotificationAnalyticsAttribute = {
|
|
42452
42593
|
__typename?: 'InfluentsNotificationAnalyticsAttribute';
|
|
42453
42594
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -44223,6 +44364,7 @@ export declare type JiraAutodevJob = {
|
|
|
44223
44364
|
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
44224
44365
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
44225
44366
|
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
44367
|
+
error?: Maybe<JiraAutodevJobPermissionError>;
|
|
44226
44368
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
44227
44369
|
id: Scalars['ID']['output'];
|
|
44228
44370
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -44256,6 +44398,12 @@ export declare type JiraAutodevJobEdge = {
|
|
|
44256
44398
|
cursor: Scalars['String']['output'];
|
|
44257
44399
|
node?: Maybe<JiraAutodevJob>;
|
|
44258
44400
|
};
|
|
44401
|
+
export declare type JiraAutodevJobPermissionError = {
|
|
44402
|
+
__typename?: 'JiraAutodevJobPermissionError';
|
|
44403
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
44404
|
+
httpStatus?: Maybe<Scalars['Int']['output']>;
|
|
44405
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
44406
|
+
};
|
|
44259
44407
|
export declare enum JiraAutodevPhase {
|
|
44260
44408
|
CodeGenerating = "CODE_GENERATING",
|
|
44261
44409
|
CodeReview = "CODE_REVIEW",
|
|
@@ -46131,6 +46279,20 @@ export declare type JiraCustomerServiceOrganizationField = JiraIssueField & Jira
|
|
|
46131
46279
|
type: Scalars['String']['output'];
|
|
46132
46280
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
46133
46281
|
};
|
|
46282
|
+
export declare type JiraCustomerServiceOrganizationFieldPayload = Payload & {
|
|
46283
|
+
__typename?: 'JiraCustomerServiceOrganizationFieldPayload';
|
|
46284
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46285
|
+
field?: Maybe<JiraCustomerServiceOrganizationField>;
|
|
46286
|
+
success: Scalars['Boolean']['output'];
|
|
46287
|
+
};
|
|
46288
|
+
export declare type JiraCustomerServiceUpdateOrganizationFieldInput = {
|
|
46289
|
+
id: Scalars['ID']['input'];
|
|
46290
|
+
operation?: InputMaybe<JiraCustomerServiceUpdateOrganizationOperationInput>;
|
|
46291
|
+
};
|
|
46292
|
+
export declare type JiraCustomerServiceUpdateOrganizationOperationInput = {
|
|
46293
|
+
operation: JiraSingleValueFieldOperations;
|
|
46294
|
+
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
46295
|
+
};
|
|
46134
46296
|
export declare type JiraDashboard = Node & {
|
|
46135
46297
|
__typename?: 'JiraDashboard';
|
|
46136
46298
|
dashboardId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -47912,6 +48074,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
47912
48074
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
47913
48075
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
47914
48076
|
comments?: Maybe<JiraCommentConnection>;
|
|
48077
|
+
configurationUrl?: Maybe<Scalars['URL']['output']>;
|
|
47915
48078
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
47916
48079
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
47917
48080
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
@@ -50749,6 +50912,7 @@ export declare type JiraMutation = {
|
|
|
50749
50912
|
updateMultipleSelectUserPickerField?: Maybe<JiraMultipleSelectUserPickerFieldPayload>;
|
|
50750
50913
|
updateMultipleVersionPickerField?: Maybe<JiraMultipleVersionPickerFieldPayload>;
|
|
50751
50914
|
updateNumberField?: Maybe<JiraNumberFieldPayload>;
|
|
50915
|
+
updateOrganizationField?: Maybe<JiraCustomerServiceOrganizationFieldPayload>;
|
|
50752
50916
|
updateOriginalTimeEstimateField?: Maybe<JiraOriginalTimeEstimateFieldPayload>;
|
|
50753
50917
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
50754
50918
|
updatePeopleField?: Maybe<JiraPeopleFieldPayload>;
|
|
@@ -51247,6 +51411,9 @@ export declare type JiraMutationUpdateMultipleVersionPickerFieldArgs = {
|
|
|
51247
51411
|
export declare type JiraMutationUpdateNumberFieldArgs = {
|
|
51248
51412
|
input: JiraUpdateNumberFieldInput;
|
|
51249
51413
|
};
|
|
51414
|
+
export declare type JiraMutationUpdateOrganizationFieldArgs = {
|
|
51415
|
+
input: JiraCustomerServiceUpdateOrganizationFieldInput;
|
|
51416
|
+
};
|
|
51250
51417
|
export declare type JiraMutationUpdateOriginalTimeEstimateFieldArgs = {
|
|
51251
51418
|
input: JiraOriginalTimeEstimateFieldInput;
|
|
51252
51419
|
};
|
|
@@ -52325,6 +52492,7 @@ export declare type JiraPlaybookStepRun = Node & {
|
|
|
52325
52492
|
__typename?: 'JiraPlaybookStepRun';
|
|
52326
52493
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
52327
52494
|
id: Scalars['ID']['output'];
|
|
52495
|
+
playbookId?: Maybe<Scalars['ID']['output']>;
|
|
52328
52496
|
playbookName?: Maybe<Scalars['String']['output']>;
|
|
52329
52497
|
stepDuration?: Maybe<Scalars['Long']['output']>;
|
|
52330
52498
|
stepId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -60436,7 +60604,7 @@ export declare type KnowledgeDiscoveryUpdateRelatedEntitiesPayload = Payload & {
|
|
|
60436
60604
|
success: Scalars['Boolean']['output'];
|
|
60437
60605
|
};
|
|
60438
60606
|
export declare type KnowledgeDiscoveryUpdateUserKeyPhraseInteractionInput = {
|
|
60439
|
-
|
|
60607
|
+
isDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60440
60608
|
keyPhrase: Scalars['String']['input'];
|
|
60441
60609
|
workspaceId: Scalars['String']['input'];
|
|
60442
60610
|
};
|
|
@@ -61495,6 +61663,7 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
|
61495
61663
|
export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
61496
61664
|
appId: Scalars['String']['input'];
|
|
61497
61665
|
envId: Scalars['String']['input'];
|
|
61666
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
61498
61667
|
versionId: Scalars['String']['input'];
|
|
61499
61668
|
};
|
|
61500
61669
|
export declare type MarketplaceConsoleFrameworkAttributes = {
|
|
@@ -62435,6 +62604,7 @@ export declare enum MarketplaceStoreInstallAppStatus {
|
|
|
62435
62604
|
InProgress = "IN_PROGRESS",
|
|
62436
62605
|
Pending = "PENDING",
|
|
62437
62606
|
ProvisioningFailure = "PROVISIONING_FAILURE",
|
|
62607
|
+
ProvisioningSuccessInstallPending = "PROVISIONING_SUCCESS_INSTALL_PENDING",
|
|
62438
62608
|
Success = "SUCCESS",
|
|
62439
62609
|
TimedOut = "TIMED_OUT"
|
|
62440
62610
|
}
|
|
@@ -63275,6 +63445,11 @@ export declare type MercuryFocusAreaType = {
|
|
|
63275
63445
|
id: Scalars['ID']['output'];
|
|
63276
63446
|
name: Scalars['String']['output'];
|
|
63277
63447
|
};
|
|
63448
|
+
export declare type MercuryForYouFocusAreaActivityHistory = {
|
|
63449
|
+
__typename?: 'MercuryForYouFocusAreaActivityHistory';
|
|
63450
|
+
activityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
63451
|
+
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
63452
|
+
};
|
|
63278
63453
|
export declare type MercuryFunding = {
|
|
63279
63454
|
__typename?: 'MercuryFunding';
|
|
63280
63455
|
aggregation?: Maybe<MercuryFundingAggregation>;
|
|
@@ -63757,6 +63932,7 @@ export declare type MercuryQueryApi = {
|
|
|
63757
63932
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
63758
63933
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
63759
63934
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
63935
|
+
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
63760
63936
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
63761
63937
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
63762
63938
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -63825,6 +64001,13 @@ export declare type MercuryQueryApiFocusAreasArgs = {
|
|
|
63825
64001
|
export declare type MercuryQueryApiFocusAreasByArisArgs = {
|
|
63826
64002
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
63827
64003
|
};
|
|
64004
|
+
export declare type MercuryQueryApiForYouFocusAreaActivityHistoryArgs = {
|
|
64005
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64006
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
64007
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64008
|
+
focusAreaFirst?: InputMaybe<Scalars['Int']['input']>;
|
|
64009
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
64010
|
+
};
|
|
63828
64011
|
export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
|
|
63829
64012
|
cloudId: Scalars['ID']['input'];
|
|
63830
64013
|
};
|
|
@@ -68956,6 +69139,7 @@ export declare type Query = {
|
|
|
68956
69139
|
favoriteContent?: Maybe<PaginatedContentList>;
|
|
68957
69140
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
68958
69141
|
feed?: Maybe<PaginatedFeed>;
|
|
69142
|
+
firebolt_bookById?: Maybe<FireboltBook>;
|
|
68959
69143
|
forYouFeed?: Maybe<ForYouPaginatedFeed>;
|
|
68960
69144
|
fullHubArticle?: Maybe<ContentPlatformFullHubArticle>;
|
|
68961
69145
|
fullHubArticles: ContentPlatformHubArticleSearchConnection;
|
|
@@ -69070,13 +69254,9 @@ export declare type Query = {
|
|
|
69070
69254
|
paywallStatus?: Maybe<PaywallStatus>;
|
|
69071
69255
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
69072
69256
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
69073
|
-
playbook_jiraPlaybookInstanceSteps?: Maybe<Array<Maybe<JiraPlaybookInstanceStep>>>;
|
|
69074
|
-
playbook_jiraPlaybookInstances?: Maybe<Array<Maybe<JiraPlaybookInstance>>>;
|
|
69075
69257
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
69076
|
-
playbook_jiraPlaybookStepRuns?: Maybe<Array<Maybe<JiraPlaybookStepRun>>>;
|
|
69077
69258
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
69078
69259
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
69079
|
-
playbook_jiraPlaybooks?: Maybe<Array<Maybe<JiraPlaybook>>>;
|
|
69080
69260
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
69081
69261
|
pokemon?: Maybe<PokemonQuery>;
|
|
69082
69262
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
@@ -70792,6 +70972,9 @@ export declare type QueryFeedArgs = {
|
|
|
70792
70972
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70793
70973
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
70794
70974
|
};
|
|
70975
|
+
export declare type QueryFirebolt_BookByIdArgs = {
|
|
70976
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
70977
|
+
};
|
|
70795
70978
|
export declare type QueryForYouFeedArgs = {
|
|
70796
70979
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70797
70980
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -71102,12 +71285,6 @@ export declare type QueryPermsReportDownloadLinkForTaskArgs = {
|
|
|
71102
71285
|
export declare type QueryPlaybook_JiraPlaybookArgs = {
|
|
71103
71286
|
playbookAri: Scalars['ID']['input'];
|
|
71104
71287
|
};
|
|
71105
|
-
export declare type QueryPlaybook_JiraPlaybookInstanceStepsArgs = {
|
|
71106
|
-
ids: Array<Scalars['ID']['input']>;
|
|
71107
|
-
};
|
|
71108
|
-
export declare type QueryPlaybook_JiraPlaybookInstancesArgs = {
|
|
71109
|
-
ids: Array<Scalars['ID']['input']>;
|
|
71110
|
-
};
|
|
71111
71288
|
export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
71112
71289
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71113
71290
|
cloudId: Scalars['ID']['input'];
|
|
@@ -71115,9 +71292,6 @@ export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
|
71115
71292
|
issueId: Scalars['String']['input'];
|
|
71116
71293
|
projectKey: Scalars['String']['input'];
|
|
71117
71294
|
};
|
|
71118
|
-
export declare type QueryPlaybook_JiraPlaybookStepRunsArgs = {
|
|
71119
|
-
ids: Array<Scalars['ID']['input']>;
|
|
71120
|
-
};
|
|
71121
71295
|
export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
|
|
71122
71296
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71123
71297
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -71130,9 +71304,6 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
|
71130
71304
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71131
71305
|
projectKey: Scalars['String']['input'];
|
|
71132
71306
|
};
|
|
71133
|
-
export declare type QueryPlaybook_JiraPlaybooksArgs = {
|
|
71134
|
-
ids: Array<Scalars['ID']['input']>;
|
|
71135
|
-
};
|
|
71136
71307
|
export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
71137
71308
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71138
71309
|
cloudId: Scalars['ID']['input'];
|
|
@@ -71757,7 +71928,7 @@ export declare type RadarDateFieldValue = {
|
|
|
71757
71928
|
};
|
|
71758
71929
|
export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
71759
71930
|
__typename?: 'RadarDynamicFilterOptions';
|
|
71760
|
-
functions: Array<
|
|
71931
|
+
functions: Array<RadarFunctionId>;
|
|
71761
71932
|
operators: Array<RadarFilterOperators>;
|
|
71762
71933
|
plurality: RadarFilterPlurality;
|
|
71763
71934
|
type: RadarFilterInputType;
|
|
@@ -71829,7 +72000,7 @@ export declare enum RadarFilterOperators {
|
|
|
71829
72000
|
NotLike = "NOT_LIKE"
|
|
71830
72001
|
}
|
|
71831
72002
|
export declare type RadarFilterOptions = {
|
|
71832
|
-
functions: Array<
|
|
72003
|
+
functions: Array<RadarFunctionId>;
|
|
71833
72004
|
operators: Array<RadarFilterOperators>;
|
|
71834
72005
|
plurality: RadarFilterPlurality;
|
|
71835
72006
|
type: RadarFilterInputType;
|
|
@@ -71846,10 +72017,14 @@ export declare type RadarFocusAreaMappingsInput = {
|
|
|
71846
72017
|
export declare type RadarFunction = {
|
|
71847
72018
|
__typename?: 'RadarFunction';
|
|
71848
72019
|
argType: RadarFieldType;
|
|
71849
|
-
id:
|
|
72020
|
+
id: RadarFunctionId;
|
|
71850
72021
|
maxArgs?: Maybe<Scalars['Int']['output']>;
|
|
71851
72022
|
minArgs?: Maybe<Scalars['Int']['output']>;
|
|
72023
|
+
operators: Array<RadarFilterOperators>;
|
|
71852
72024
|
};
|
|
72025
|
+
export declare enum RadarFunctionId {
|
|
72026
|
+
Under = "UNDER"
|
|
72027
|
+
}
|
|
71853
72028
|
export declare type RadarGroupMetrics = {
|
|
71854
72029
|
__typename?: 'RadarGroupMetrics';
|
|
71855
72030
|
count: Scalars['Int']['output'];
|
|
@@ -71880,9 +72055,11 @@ export declare type RadarNumericFieldValue = {
|
|
|
71880
72055
|
};
|
|
71881
72056
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
71882
72057
|
__typename?: 'RadarPosition';
|
|
72058
|
+
directReports?: Maybe<Array<RadarPosition>>;
|
|
71883
72059
|
entityId: Scalars['ID']['output'];
|
|
71884
72060
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
71885
72061
|
id: Scalars['ID']['output'];
|
|
72062
|
+
manager?: Maybe<RadarPosition>;
|
|
71886
72063
|
reportingLine?: Maybe<Array<RadarPosition>>;
|
|
71887
72064
|
type?: Maybe<RadarEntityType>;
|
|
71888
72065
|
worker?: Maybe<RadarWorker>;
|
|
@@ -71901,7 +72078,7 @@ export declare type RadarPositionEdge = RadarEdge & {
|
|
|
71901
72078
|
};
|
|
71902
72079
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
71903
72080
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
71904
|
-
functions: Array<
|
|
72081
|
+
functions: Array<RadarFunctionId>;
|
|
71905
72082
|
operators: Array<RadarFilterOperators>;
|
|
71906
72083
|
plurality: RadarFilterPlurality;
|
|
71907
72084
|
type: RadarFilterInputType;
|
|
@@ -71956,6 +72133,7 @@ export declare type RadarWorkspace = {
|
|
|
71956
72133
|
__typename?: 'RadarWorkspace';
|
|
71957
72134
|
entityId: Scalars['ID']['output'];
|
|
71958
72135
|
focusAreaFields: Array<RadarFieldDefinition>;
|
|
72136
|
+
functions: Array<RadarFunction>;
|
|
71959
72137
|
id: Scalars['ID']['output'];
|
|
71960
72138
|
positionFields: Array<RadarFieldDefinition>;
|
|
71961
72139
|
};
|
|
@@ -74083,6 +74261,7 @@ export declare type SearchResultJiraProjectSocialSignalArgs = {
|
|
|
74083
74261
|
export declare type SearchResultMercuryFocusArea = SearchResult & {
|
|
74084
74262
|
__typename?: 'SearchResultMercuryFocusArea';
|
|
74085
74263
|
description: Scalars['String']['output'];
|
|
74264
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
74086
74265
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
74087
74266
|
id: Scalars['ID']['output'];
|
|
74088
74267
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -80875,6 +81054,17 @@ export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
|
80875
81054
|
id: Scalars['ID']['output'];
|
|
80876
81055
|
orgId?: Maybe<Scalars['String']['output']>;
|
|
80877
81056
|
};
|
|
81057
|
+
export declare type UnifiedAccountMutation = {
|
|
81058
|
+
__typename?: 'UnifiedAccountMutation';
|
|
81059
|
+
setPrimaryAccount?: Maybe<UnifiedLinkingStatusPayload>;
|
|
81060
|
+
unlinkAccount?: Maybe<UnifiedLinkingStatusPayload>;
|
|
81061
|
+
};
|
|
81062
|
+
export declare type UnifiedAccountMutationSetPrimaryAccountArgs = {
|
|
81063
|
+
aaid: Scalars['String']['input'];
|
|
81064
|
+
};
|
|
81065
|
+
export declare type UnifiedAccountMutationUnlinkAccountArgs = {
|
|
81066
|
+
aaid: Scalars['String']['input'];
|
|
81067
|
+
};
|
|
80878
81068
|
export declare type UnifiedAdmins = UnifiedINode & {
|
|
80879
81069
|
__typename?: 'UnifiedAdmins';
|
|
80880
81070
|
admins?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -81147,10 +81337,18 @@ export declare type UnifiedLearningCertificationEdge = UnifiedIEdge & {
|
|
|
81147
81337
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
81148
81338
|
node?: Maybe<UnifiedLearningCertification>;
|
|
81149
81339
|
};
|
|
81150
|
-
export declare type
|
|
81151
|
-
__typename?: '
|
|
81340
|
+
export declare type UnifiedLinkAuthenticationPayload = {
|
|
81341
|
+
__typename?: 'UnifiedLinkAuthenticationPayload';
|
|
81342
|
+
account1?: Maybe<UnifiedAccountDetails>;
|
|
81343
|
+
account2?: Maybe<UnifiedAccountDetails>;
|
|
81152
81344
|
id: Scalars['ID']['output'];
|
|
81153
|
-
|
|
81345
|
+
primaryAccountIndex?: Maybe<Scalars['Int']['output']>;
|
|
81346
|
+
token: Scalars['String']['output'];
|
|
81347
|
+
};
|
|
81348
|
+
export declare type UnifiedLinkInitiationPayload = {
|
|
81349
|
+
__typename?: 'UnifiedLinkInitiationPayload';
|
|
81350
|
+
id: Scalars['ID']['output'];
|
|
81351
|
+
token: Scalars['String']['output'];
|
|
81154
81352
|
};
|
|
81155
81353
|
export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
81156
81354
|
__typename?: 'UnifiedLinkedAccount';
|
|
@@ -81182,33 +81380,30 @@ export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
|
81182
81380
|
};
|
|
81183
81381
|
export declare type UnifiedLinkingMutation = {
|
|
81184
81382
|
__typename?: 'UnifiedLinkingMutation';
|
|
81185
|
-
|
|
81186
|
-
completeTransaction?: Maybe<
|
|
81187
|
-
|
|
81188
|
-
|
|
81383
|
+
authenticateLinkingWithLoggedInAccount?: Maybe<UnifiedULinkAuthenticationPayload>;
|
|
81384
|
+
completeTransaction?: Maybe<UnifiedLinkingStatusPayload>;
|
|
81385
|
+
initializeLinkingWithLoggedInAccount?: Maybe<UnifiedULinkInitiationPayload>;
|
|
81386
|
+
updateLinkingWithPrimaryAccount?: Maybe<UnifiedLinkingStatusPayload>;
|
|
81189
81387
|
};
|
|
81190
|
-
export declare type
|
|
81191
|
-
isLoggedInPrimary?: InputMaybe<Scalars['Boolean']['input']>;
|
|
81388
|
+
export declare type UnifiedLinkingMutationAuthenticateLinkingWithLoggedInAccountArgs = {
|
|
81192
81389
|
token: Scalars['String']['input'];
|
|
81193
81390
|
};
|
|
81194
81391
|
export declare type UnifiedLinkingMutationCompleteTransactionArgs = {
|
|
81195
81392
|
token: Scalars['String']['input'];
|
|
81196
81393
|
};
|
|
81197
|
-
export declare type
|
|
81198
|
-
account2Aaid?: InputMaybe<Scalars['String']['input']>;
|
|
81199
|
-
primaryAccountType?: InputMaybe<UnifiedPrimaryAccountType>;
|
|
81200
|
-
};
|
|
81201
|
-
export declare type UnifiedLinkingMutationUnlinkAccountArgs = {
|
|
81394
|
+
export declare type UnifiedLinkingMutationUpdateLinkingWithPrimaryAccountArgs = {
|
|
81202
81395
|
aaid: Scalars['String']['input'];
|
|
81396
|
+
token: Scalars['String']['input'];
|
|
81203
81397
|
};
|
|
81204
|
-
export declare type
|
|
81205
|
-
__typename?: '
|
|
81398
|
+
export declare type UnifiedLinkingStatusPayload = UnifiedPayload & {
|
|
81399
|
+
__typename?: 'UnifiedLinkingStatusPayload';
|
|
81206
81400
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
81207
81401
|
message?: Maybe<Scalars['String']['output']>;
|
|
81208
81402
|
success: Scalars['Boolean']['output'];
|
|
81209
81403
|
};
|
|
81210
81404
|
export declare type UnifiedMutation = {
|
|
81211
81405
|
__typename?: 'UnifiedMutation';
|
|
81406
|
+
account?: Maybe<UnifiedAccountMutation>;
|
|
81212
81407
|
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
|
|
81213
81408
|
createParentAccount?: Maybe<UnifiedParentAccountPayload>;
|
|
81214
81409
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
@@ -81265,10 +81460,6 @@ export declare type UnifiedPayload = {
|
|
|
81265
81460
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
81266
81461
|
success: Scalars['Boolean']['output'];
|
|
81267
81462
|
};
|
|
81268
|
-
export declare enum UnifiedPrimaryAccountType {
|
|
81269
|
-
Input = "INPUT",
|
|
81270
|
-
LoggedIn = "LOGGED_IN"
|
|
81271
|
-
}
|
|
81272
81463
|
export declare type UnifiedProfile = UnifiedINode & {
|
|
81273
81464
|
__typename?: 'UnifiedProfile';
|
|
81274
81465
|
badges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
@@ -81423,7 +81614,8 @@ export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQu
|
|
|
81423
81614
|
export declare type UnifiedUGatingStatusResult = UnifiedAccessStatus | UnifiedQueryError;
|
|
81424
81615
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
81425
81616
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
81426
|
-
export declare type
|
|
81617
|
+
export declare type UnifiedULinkAuthenticationPayload = UnifiedLinkAuthenticationPayload | UnifiedLinkingStatusPayload;
|
|
81618
|
+
export declare type UnifiedULinkInitiationPayload = UnifiedLinkInitiationPayload | UnifiedLinkingStatusPayload;
|
|
81427
81619
|
export declare type UnifiedULinkedAccount2Result = UnifiedLinkedAccount2Connection | UnifiedQueryError;
|
|
81428
81620
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
81429
81621
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
@@ -83370,8 +83562,18 @@ export declare type WorkSuggestionsJiraPriority = {
|
|
|
83370
83562
|
name?: Maybe<Scalars['String']['output']>;
|
|
83371
83563
|
sequence?: Maybe<Scalars['Int']['output']>;
|
|
83372
83564
|
};
|
|
83565
|
+
export declare type WorkSuggestionsMergePrActionInput = {
|
|
83566
|
+
cloudId: Scalars['ID']['input'];
|
|
83567
|
+
taskId: Scalars['String']['input'];
|
|
83568
|
+
};
|
|
83569
|
+
export declare type WorkSuggestionsMergePrActionPayload = Payload & {
|
|
83570
|
+
__typename?: 'WorkSuggestionsMergePRActionPayload';
|
|
83571
|
+
errors?: Maybe<Array<MutationError>>;
|
|
83572
|
+
success: Scalars['Boolean']['output'];
|
|
83573
|
+
};
|
|
83373
83574
|
export declare type WorkSuggestionsMutation = {
|
|
83374
83575
|
__typename?: 'WorkSuggestionsMutation';
|
|
83576
|
+
mergePullRequest?: Maybe<WorkSuggestionsMergePrActionPayload>;
|
|
83375
83577
|
nudgePullRequestReviewers?: Maybe<WorkSuggestionsNudgePrActionPayload>;
|
|
83376
83578
|
purgeUserActionStateForCurrentUser?: Maybe<WorkSuggestionsActionPayload>;
|
|
83377
83579
|
purgeUserProfileForCurrentUser?: Maybe<WorkSuggestionsPurgeUserProfilePayload>;
|
|
@@ -83379,6 +83581,9 @@ export declare type WorkSuggestionsMutation = {
|
|
|
83379
83581
|
saveUserProfile?: Maybe<WorkSuggestionsSaveUserProfilePayload>;
|
|
83380
83582
|
snoozeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
83381
83583
|
};
|
|
83584
|
+
export declare type WorkSuggestionsMutationMergePullRequestArgs = {
|
|
83585
|
+
input: WorkSuggestionsMergePrActionInput;
|
|
83586
|
+
};
|
|
83382
83587
|
export declare type WorkSuggestionsMutationNudgePullRequestReviewersArgs = {
|
|
83383
83588
|
input: WorkSuggestionsNudgePrActionInput;
|
|
83384
83589
|
};
|