@forge/cli-shared 4.1.0-next.1 → 4.1.0
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 +11 -0
- package/out/graphql/graphql-types.d.ts +402 -49
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +36 -19
- package/package.json +2 -2
|
@@ -3071,6 +3071,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3071
3071
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
3072
3072
|
updateAnnouncement?: Maybe<CompassUpdateAnnouncementPayload>;
|
|
3073
3073
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
3074
|
+
updateComponentApi?: Maybe<UpdateComponentApiPayload>;
|
|
3074
3075
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
3075
3076
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
3076
3077
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
@@ -3246,6 +3247,10 @@ export declare type CompassCatalogMutationApiUpdateAnnouncementArgs = {
|
|
|
3246
3247
|
export declare type CompassCatalogMutationApiUpdateComponentArgs = {
|
|
3247
3248
|
input: UpdateCompassComponentInput;
|
|
3248
3249
|
};
|
|
3250
|
+
export declare type CompassCatalogMutationApiUpdateComponentApiArgs = {
|
|
3251
|
+
cloudId: Scalars['ID']['input'];
|
|
3252
|
+
input: UpdateComponentApiInput;
|
|
3253
|
+
};
|
|
3249
3254
|
export declare type CompassCatalogMutationApiUpdateComponentDataManagerMetadataArgs = {
|
|
3250
3255
|
input: UpdateCompassComponentDataManagerMetadataInput;
|
|
3251
3256
|
};
|
|
@@ -3439,6 +3444,7 @@ export declare type CompassChangeMetadata = {
|
|
|
3439
3444
|
export declare type CompassComponent = Node & {
|
|
3440
3445
|
__typename?: 'CompassComponent';
|
|
3441
3446
|
announcements?: Maybe<Array<CompassAnnouncement>>;
|
|
3447
|
+
api?: Maybe<CompassComponentApi>;
|
|
3442
3448
|
applicableScorecards?: Maybe<Array<CompassScorecard>>;
|
|
3443
3449
|
changeMetadata: CompassChangeMetadata;
|
|
3444
3450
|
customFields?: Maybe<Array<CompassCustomField>>;
|
|
@@ -3474,12 +3480,149 @@ export declare type CompassComponentRelationshipsArgs = {
|
|
|
3474
3480
|
export declare type CompassComponentScorecardScoreArgs = {
|
|
3475
3481
|
query?: InputMaybe<CompassComponentScorecardScoreQuery>;
|
|
3476
3482
|
};
|
|
3483
|
+
export declare type CompassComponentApi = {
|
|
3484
|
+
__typename?: 'CompassComponentApi';
|
|
3485
|
+
changelog: CompassComponentApiChangelogConnection;
|
|
3486
|
+
componentId: Scalars['String']['output'];
|
|
3487
|
+
createdAt: Scalars['String']['output'];
|
|
3488
|
+
defaultTag: Scalars['String']['output'];
|
|
3489
|
+
deletedAt?: Maybe<Scalars['String']['output']>;
|
|
3490
|
+
historicSpecTags: CompassComponentSpecTagConnection;
|
|
3491
|
+
id: Scalars['String']['output'];
|
|
3492
|
+
latestDefaultSpec?: Maybe<CompassComponentSpec>;
|
|
3493
|
+
latestSpecForTag?: Maybe<CompassComponentSpec>;
|
|
3494
|
+
latestSpecWithErrorForTag?: Maybe<CompassComponentSpec>;
|
|
3495
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
3496
|
+
repo?: Maybe<CompassComponentApiRepo>;
|
|
3497
|
+
repoId?: Maybe<Scalars['String']['output']>;
|
|
3498
|
+
spec?: Maybe<CompassComponentSpec>;
|
|
3499
|
+
stats: CompassComponentApiStats;
|
|
3500
|
+
status: Scalars['String']['output'];
|
|
3501
|
+
tags: CompassComponentSpecTagConnection;
|
|
3502
|
+
updatedAt: Scalars['String']['output'];
|
|
3503
|
+
};
|
|
3504
|
+
export declare type CompassComponentApiChangelogArgs = {
|
|
3505
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3506
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
3507
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3508
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3509
|
+
};
|
|
3510
|
+
export declare type CompassComponentApiHistoricSpecTagsArgs = {
|
|
3511
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3512
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
3513
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3514
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3515
|
+
query: CompassComponentApiHistoricSpecTagsQuery;
|
|
3516
|
+
};
|
|
3517
|
+
export declare type CompassComponentApiLatestSpecForTagArgs = {
|
|
3518
|
+
tagName: Scalars['String']['input'];
|
|
3519
|
+
};
|
|
3520
|
+
export declare type CompassComponentApiLatestSpecWithErrorForTagArgs = {
|
|
3521
|
+
tagName?: InputMaybe<Scalars['String']['input']>;
|
|
3522
|
+
};
|
|
3523
|
+
export declare type CompassComponentApiSpecArgs = {
|
|
3524
|
+
id: Scalars['String']['input'];
|
|
3525
|
+
};
|
|
3526
|
+
export declare type CompassComponentApiTagsArgs = {
|
|
3527
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3528
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
3529
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3530
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3531
|
+
};
|
|
3532
|
+
export declare type CompassComponentApiChangelog = {
|
|
3533
|
+
__typename?: 'CompassComponentApiChangelog';
|
|
3534
|
+
baseSpec?: Maybe<CompassComponentSpec>;
|
|
3535
|
+
effectiveAt: Scalars['String']['output'];
|
|
3536
|
+
endpointChanges: Array<CompassComponentApiEndpointChange>;
|
|
3537
|
+
headSpec?: Maybe<CompassComponentSpec>;
|
|
3538
|
+
markdown: Scalars['String']['output'];
|
|
3539
|
+
};
|
|
3540
|
+
export declare type CompassComponentApiChangelogConnection = {
|
|
3541
|
+
__typename?: 'CompassComponentApiChangelogConnection';
|
|
3542
|
+
edges: Array<CompassComponentApiChangelogEdge>;
|
|
3543
|
+
nodes: Array<CompassComponentApiChangelog>;
|
|
3544
|
+
pageInfo: PageInfo;
|
|
3545
|
+
};
|
|
3546
|
+
export declare type CompassComponentApiChangelogEdge = {
|
|
3547
|
+
__typename?: 'CompassComponentApiChangelogEdge';
|
|
3548
|
+
cursor: Scalars['String']['output'];
|
|
3549
|
+
node: CompassComponentApiChangelog;
|
|
3550
|
+
};
|
|
3551
|
+
export declare type CompassComponentApiEndpointChange = {
|
|
3552
|
+
__typename?: 'CompassComponentApiEndpointChange';
|
|
3553
|
+
changeType?: Maybe<Scalars['String']['output']>;
|
|
3554
|
+
changelog?: Maybe<Array<Scalars['String']['output']>>;
|
|
3555
|
+
method: Scalars['String']['output'];
|
|
3556
|
+
path: Scalars['String']['output'];
|
|
3557
|
+
};
|
|
3558
|
+
export declare type CompassComponentApiHistoricSpecTagsQuery = {
|
|
3559
|
+
tagName: Scalars['String']['input'];
|
|
3560
|
+
};
|
|
3561
|
+
export declare type CompassComponentApiRepo = {
|
|
3562
|
+
__typename?: 'CompassComponentApiRepo';
|
|
3563
|
+
provider: Scalars['String']['output'];
|
|
3564
|
+
repoUrl: Scalars['String']['output'];
|
|
3565
|
+
};
|
|
3566
|
+
export declare type CompassComponentApiRepoUpdate = {
|
|
3567
|
+
provider: Scalars['String']['input'];
|
|
3568
|
+
repoUrl: Scalars['String']['input'];
|
|
3569
|
+
};
|
|
3570
|
+
export declare type CompassComponentApiStats = {
|
|
3571
|
+
__typename?: 'CompassComponentApiStats';
|
|
3572
|
+
endpointChanges: CompassComponentApiStatsEndpointChangesConnection;
|
|
3573
|
+
};
|
|
3574
|
+
export declare type CompassComponentApiStatsEndpointChangesArgs = {
|
|
3575
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3576
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
3577
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3578
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3579
|
+
};
|
|
3580
|
+
export declare type CompassComponentApiStatsEndpointChange = {
|
|
3581
|
+
__typename?: 'CompassComponentApiStatsEndpointChange';
|
|
3582
|
+
added: Scalars['Int']['output'];
|
|
3583
|
+
changed: Scalars['Int']['output'];
|
|
3584
|
+
firstWeekDay: Scalars['String']['output'];
|
|
3585
|
+
removed: Scalars['Int']['output'];
|
|
3586
|
+
};
|
|
3587
|
+
export declare type CompassComponentApiStatsEndpointChangeEdge = {
|
|
3588
|
+
__typename?: 'CompassComponentApiStatsEndpointChangeEdge';
|
|
3589
|
+
cursor: Scalars['String']['output'];
|
|
3590
|
+
node: CompassComponentApiStatsEndpointChange;
|
|
3591
|
+
};
|
|
3592
|
+
export declare type CompassComponentApiStatsEndpointChangesConnection = {
|
|
3593
|
+
__typename?: 'CompassComponentApiStatsEndpointChangesConnection';
|
|
3594
|
+
edges: Array<CompassComponentApiStatsEndpointChangeEdge>;
|
|
3595
|
+
nodes: Array<CompassComponentApiStatsEndpointChange>;
|
|
3596
|
+
pageInfo: PageInfo;
|
|
3597
|
+
};
|
|
3477
3598
|
export declare type CompassComponentDataManager = {
|
|
3478
3599
|
__typename?: 'CompassComponentDataManager';
|
|
3479
3600
|
ecosystemAppId: Scalars['ID']['output'];
|
|
3480
3601
|
externalSourceURL?: Maybe<Scalars['URL']['output']>;
|
|
3481
3602
|
lastSyncEvent?: Maybe<ComponentSyncEvent>;
|
|
3482
3603
|
};
|
|
3604
|
+
export declare type CompassComponentEndpoint = {
|
|
3605
|
+
__typename?: 'CompassComponentEndpoint';
|
|
3606
|
+
checksum: Scalars['String']['output'];
|
|
3607
|
+
id: Scalars['String']['output'];
|
|
3608
|
+
method: Scalars['String']['output'];
|
|
3609
|
+
originalPath: Scalars['String']['output'];
|
|
3610
|
+
path: Scalars['String']['output'];
|
|
3611
|
+
readUrl: Scalars['String']['output'];
|
|
3612
|
+
summary: Scalars['String']['output'];
|
|
3613
|
+
updatedAt: Scalars['String']['output'];
|
|
3614
|
+
};
|
|
3615
|
+
export declare type CompassComponentEndpointConnection = {
|
|
3616
|
+
__typename?: 'CompassComponentEndpointConnection';
|
|
3617
|
+
edges: Array<CompassComponentEndpointEdge>;
|
|
3618
|
+
nodes: Array<CompassComponentEndpoint>;
|
|
3619
|
+
pageInfo: PageInfo;
|
|
3620
|
+
};
|
|
3621
|
+
export declare type CompassComponentEndpointEdge = {
|
|
3622
|
+
__typename?: 'CompassComponentEndpointEdge';
|
|
3623
|
+
cursor: Scalars['String']['output'];
|
|
3624
|
+
node: CompassComponentEndpoint;
|
|
3625
|
+
};
|
|
3483
3626
|
export declare type CompassComponentLabel = {
|
|
3484
3627
|
__typename?: 'CompassComponentLabel';
|
|
3485
3628
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -3540,6 +3683,59 @@ export declare type CompassComponentScorecardRelationshipResult = CompassCompone
|
|
|
3540
3683
|
export declare type CompassComponentScorecardScoreQuery = {
|
|
3541
3684
|
scorecardId: Scalars['ID']['input'];
|
|
3542
3685
|
};
|
|
3686
|
+
export declare type CompassComponentSpec = {
|
|
3687
|
+
__typename?: 'CompassComponentSpec';
|
|
3688
|
+
api?: Maybe<CompassComponentApi>;
|
|
3689
|
+
checksum: Scalars['String']['output'];
|
|
3690
|
+
componentId: Scalars['String']['output'];
|
|
3691
|
+
createdAt: Scalars['String']['output'];
|
|
3692
|
+
endpoint?: Maybe<CompassComponentEndpoint>;
|
|
3693
|
+
endpoints: CompassComponentEndpointConnection;
|
|
3694
|
+
id: Scalars['String']['output'];
|
|
3695
|
+
metadataReadUrl?: Maybe<Scalars['String']['output']>;
|
|
3696
|
+
openapiVersion: Scalars['String']['output'];
|
|
3697
|
+
processingData: CompassComponentSpecProcessingData;
|
|
3698
|
+
status: Scalars['String']['output'];
|
|
3699
|
+
updatedAt: Scalars['String']['output'];
|
|
3700
|
+
};
|
|
3701
|
+
export declare type CompassComponentSpecEndpointArgs = {
|
|
3702
|
+
method: Scalars['String']['input'];
|
|
3703
|
+
path: Scalars['String']['input'];
|
|
3704
|
+
};
|
|
3705
|
+
export declare type CompassComponentSpecEndpointsArgs = {
|
|
3706
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3707
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
3708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3709
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3710
|
+
};
|
|
3711
|
+
export declare type CompassComponentSpecProcessingData = {
|
|
3712
|
+
__typename?: 'CompassComponentSpecProcessingData';
|
|
3713
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
3714
|
+
warnings?: Maybe<Array<Scalars['String']['output']>>;
|
|
3715
|
+
};
|
|
3716
|
+
export declare type CompassComponentSpecTag = {
|
|
3717
|
+
__typename?: 'CompassComponentSpecTag';
|
|
3718
|
+
api?: Maybe<CompassComponentApi>;
|
|
3719
|
+
createdAt: Scalars['String']['output'];
|
|
3720
|
+
effectiveAt: Scalars['String']['output'];
|
|
3721
|
+
id: Scalars['String']['output'];
|
|
3722
|
+
name: Scalars['String']['output'];
|
|
3723
|
+
overwrittenAt?: Maybe<Scalars['String']['output']>;
|
|
3724
|
+
overwrittenBy?: Maybe<Scalars['String']['output']>;
|
|
3725
|
+
spec?: Maybe<CompassComponentSpec>;
|
|
3726
|
+
updatedAt: Scalars['String']['output'];
|
|
3727
|
+
};
|
|
3728
|
+
export declare type CompassComponentSpecTagConnection = {
|
|
3729
|
+
__typename?: 'CompassComponentSpecTagConnection';
|
|
3730
|
+
edges: Array<CompassComponentSpecTagEdge>;
|
|
3731
|
+
nodes: Array<CompassComponentSpecTag>;
|
|
3732
|
+
pageInfo: PageInfo;
|
|
3733
|
+
};
|
|
3734
|
+
export declare type CompassComponentSpecTagEdge = {
|
|
3735
|
+
__typename?: 'CompassComponentSpecTagEdge';
|
|
3736
|
+
cursor: Scalars['String']['output'];
|
|
3737
|
+
node: CompassComponentSpecTag;
|
|
3738
|
+
};
|
|
3543
3739
|
export declare type CompassComponentStats = {
|
|
3544
3740
|
__typename?: 'CompassComponentStats';
|
|
3545
3741
|
failing: Scalars['Int']['output'];
|
|
@@ -4836,6 +5032,12 @@ export declare enum CompassPullRequestStatus {
|
|
|
4836
5032
|
Overdue = "OVERDUE",
|
|
4837
5033
|
Rejected = "REJECTED"
|
|
4838
5034
|
}
|
|
5035
|
+
export declare enum CompassPullRequestStatusForStatusInTimeRangeFilter {
|
|
5036
|
+
Created = "CREATED",
|
|
5037
|
+
FirstReviewed = "FIRST_REVIEWED",
|
|
5038
|
+
Merged = "MERGED",
|
|
5039
|
+
Rejected = "REJECTED"
|
|
5040
|
+
}
|
|
4839
5041
|
export declare type CompassPullRequestsQuery = {
|
|
4840
5042
|
matchAnyCurrentStatus?: InputMaybe<Array<CompassPullRequestStatus>>;
|
|
4841
5043
|
matchAnyFilters?: InputMaybe<Array<CompassPullRequestsQueryFilter>>;
|
|
@@ -9427,6 +9629,7 @@ export declare type DevAiAutofixConfiguration = {
|
|
|
9427
9629
|
openPullRequestsUrl?: Maybe<Scalars['URL']['output']>;
|
|
9428
9630
|
primaryLanguage?: Maybe<Scalars['String']['output']>;
|
|
9429
9631
|
repoUrl?: Maybe<Scalars['URL']['output']>;
|
|
9632
|
+
targetCoveragePercentage?: Maybe<Scalars['Int']['output']>;
|
|
9430
9633
|
};
|
|
9431
9634
|
export declare type DevAiAutofixConfigurationConnection = {
|
|
9432
9635
|
__typename?: 'DevAiAutofixConfigurationConnection';
|
|
@@ -10678,9 +10881,13 @@ export declare type DevOpsSummarisedFeatureFlags = {
|
|
|
10678
10881
|
export declare type DevOpsSupportedActions = {
|
|
10679
10882
|
__typename?: 'DevOpsSupportedActions';
|
|
10680
10883
|
associate?: Maybe<Scalars['Boolean']['output']>;
|
|
10884
|
+
associateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
10681
10885
|
checkAuth?: Maybe<Scalars['Boolean']['output']>;
|
|
10682
10886
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
10887
|
+
disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
10683
10888
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
10889
|
+
onEntityAssociated?: Maybe<Scalars['Boolean']['output']>;
|
|
10890
|
+
onEntityDisassociated?: Maybe<Scalars['Boolean']['output']>;
|
|
10684
10891
|
searchConnectedWorkspaces?: Maybe<Scalars['Boolean']['output']>;
|
|
10685
10892
|
searchContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
10686
10893
|
syncStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -26044,7 +26251,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
26044
26251
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
26045
26252
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
26046
26253
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
26047
|
-
helpCenters?: Maybe<
|
|
26254
|
+
helpCenters?: Maybe<HelpCenterQueryResultConnection>;
|
|
26048
26255
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
26049
26256
|
helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
26050
26257
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
@@ -26064,6 +26271,9 @@ export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
|
|
|
26064
26271
|
topicId: Scalars['ID']['input'];
|
|
26065
26272
|
};
|
|
26066
26273
|
export declare type HelpCenterQueryApiHelpCentersArgs = {
|
|
26274
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26275
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26276
|
+
sortOrder: HelpCenterSortOrder;
|
|
26067
26277
|
workspaceAri: Scalars['ID']['input'];
|
|
26068
26278
|
};
|
|
26069
26279
|
export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
@@ -26467,7 +26677,6 @@ export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
|
|
|
26467
26677
|
export declare type HelpLayoutHeroElementData = {
|
|
26468
26678
|
__typename?: 'HelpLayoutHeroElementData';
|
|
26469
26679
|
homePageTitle?: Maybe<Scalars['String']['output']>;
|
|
26470
|
-
useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
|
|
26471
26680
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
26472
26681
|
};
|
|
26473
26682
|
export declare type HelpLayoutHeroElementInput = {
|
|
@@ -28265,6 +28474,7 @@ export declare type JiraAppNavigationConfig = {
|
|
|
28265
28474
|
};
|
|
28266
28475
|
export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNavigationItem & Node & {
|
|
28267
28476
|
__typename?: 'JiraAppNavigationItem';
|
|
28477
|
+
appType?: Maybe<JiraAppType>;
|
|
28268
28478
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
28269
28479
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
28270
28480
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -28288,6 +28498,10 @@ export declare type JiraAppNavigationItemNestedLink = JiraAppNavigationConfig &
|
|
|
28288
28498
|
styleClass?: Maybe<Scalars['String']['output']>;
|
|
28289
28499
|
url?: Maybe<Scalars['String']['output']>;
|
|
28290
28500
|
};
|
|
28501
|
+
export declare enum JiraAppType {
|
|
28502
|
+
Connect = "CONNECT",
|
|
28503
|
+
Forge = "FORGE"
|
|
28504
|
+
}
|
|
28291
28505
|
export declare type JiraAppUiModifications = {
|
|
28292
28506
|
__typename?: 'JiraAppUiModifications';
|
|
28293
28507
|
appEnvId: Scalars['String']['output'];
|
|
@@ -32185,6 +32399,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
32185
32399
|
JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
|
|
32186
32400
|
JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
|
|
32187
32401
|
JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
|
|
32402
|
+
JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
|
|
32188
32403
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
32189
32404
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
32190
32405
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
@@ -32197,7 +32412,9 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
32197
32412
|
JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
|
|
32198
32413
|
JiraNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
32199
32414
|
JiraParentIssueField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
|
|
32415
|
+
JiraPeopleField?: InputMaybe<Array<JiraUpdatePeopleFieldInput>>;
|
|
32200
32416
|
JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
|
|
32417
|
+
JiraProjectField?: InputMaybe<Array<JiraUpdateProjectFieldInput>>;
|
|
32201
32418
|
JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
|
|
32202
32419
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
32203
32420
|
JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
@@ -33426,6 +33643,7 @@ export declare type JiraMutation = {
|
|
|
33426
33643
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
33427
33644
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
33428
33645
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
33646
|
+
scheduleCalendarIssue?: Maybe<JiraScheduleCalendarIssuePayload>;
|
|
33429
33647
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
33430
33648
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
33431
33649
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
@@ -33682,6 +33900,13 @@ export declare type JiraMutationSaveVersionDetailsCollapsedUisArgs = {
|
|
|
33682
33900
|
export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
33683
33901
|
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
33684
33902
|
};
|
|
33903
|
+
export declare type JiraMutationScheduleCalendarIssueArgs = {
|
|
33904
|
+
configuration: JiraCalendarViewConfigurationInput;
|
|
33905
|
+
endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
33906
|
+
issueId: Scalars['ID']['input'];
|
|
33907
|
+
scope?: InputMaybe<JiraViewScopeInput>;
|
|
33908
|
+
startDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
33909
|
+
};
|
|
33685
33910
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
33686
33911
|
cloudId: Scalars['ID']['input'];
|
|
33687
33912
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -34473,6 +34698,16 @@ export declare type JiraPeopleFieldInput = {
|
|
|
34473
34698
|
fieldId: Scalars['ID']['input'];
|
|
34474
34699
|
users: Array<JiraUserInput>;
|
|
34475
34700
|
};
|
|
34701
|
+
export declare type JiraPeopleFieldOperationInput = {
|
|
34702
|
+
ids: Array<Scalars['ID']['input']>;
|
|
34703
|
+
operation: JiraMultiValueFieldOperations;
|
|
34704
|
+
};
|
|
34705
|
+
export declare type JiraPeopleFieldPayload = Payload & {
|
|
34706
|
+
__typename?: 'JiraPeopleFieldPayload';
|
|
34707
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34708
|
+
field?: Maybe<JiraPeopleField>;
|
|
34709
|
+
success: Scalars['Boolean']['output'];
|
|
34710
|
+
};
|
|
34476
34711
|
export declare type JiraPermission = {
|
|
34477
34712
|
__typename?: 'JiraPermission';
|
|
34478
34713
|
hasPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -34782,6 +35017,7 @@ export declare type JiraProject = Node & {
|
|
|
34782
35017
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
34783
35018
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
34784
35019
|
projectType?: Maybe<JiraProjectType>;
|
|
35020
|
+
projectTypeName?: Maybe<Scalars['String']['output']>;
|
|
34785
35021
|
projectUrl?: Maybe<Scalars['String']['output']>;
|
|
34786
35022
|
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
34787
35023
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -36517,6 +36753,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
36517
36753
|
resolution?: Maybe<JiraResolution>;
|
|
36518
36754
|
resolutions?: Maybe<JiraResolutionConnection>;
|
|
36519
36755
|
resolutionsForTransition?: Maybe<JiraResolutionConnection>;
|
|
36756
|
+
selectedResolutionForTransition?: Maybe<JiraResolution>;
|
|
36520
36757
|
type: Scalars['String']['output'];
|
|
36521
36758
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
36522
36759
|
};
|
|
@@ -36539,6 +36776,9 @@ export declare type JiraResolutionFieldResolutionsForTransitionArgs = {
|
|
|
36539
36776
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36540
36777
|
transitionId: Scalars['String']['input'];
|
|
36541
36778
|
};
|
|
36779
|
+
export declare type JiraResolutionFieldSelectedResolutionForTransitionArgs = {
|
|
36780
|
+
transitionId: Scalars['String']['input'];
|
|
36781
|
+
};
|
|
36542
36782
|
export declare type JiraResolutionFieldOperationInput = {
|
|
36543
36783
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
36544
36784
|
operation: JiraSingleValueFieldOperations;
|
|
@@ -36785,6 +37025,12 @@ export declare type JiraScaledConfigurationPermissions = {
|
|
|
36785
37025
|
hasEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
36786
37026
|
userPermissions?: Maybe<JiraScaledConfigurationPermission>;
|
|
36787
37027
|
};
|
|
37028
|
+
export declare type JiraScheduleCalendarIssuePayload = Payload & {
|
|
37029
|
+
__typename?: 'JiraScheduleCalendarIssuePayload';
|
|
37030
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37031
|
+
issue?: Maybe<JiraIssue>;
|
|
37032
|
+
success: Scalars['Boolean']['output'];
|
|
37033
|
+
};
|
|
36788
37034
|
export declare type JiraScmRepository = {
|
|
36789
37035
|
__typename?: 'JiraScmRepository';
|
|
36790
37036
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -38890,6 +39136,10 @@ export declare type JiraUpdateParentFieldInput = {
|
|
|
38890
39136
|
id: Scalars['ID']['input'];
|
|
38891
39137
|
operation: JiraParentFieldOperationInput;
|
|
38892
39138
|
};
|
|
39139
|
+
export declare type JiraUpdatePeopleFieldInput = {
|
|
39140
|
+
id: Scalars['ID']['input'];
|
|
39141
|
+
operations: Array<JiraPeopleFieldOperationInput>;
|
|
39142
|
+
};
|
|
38893
39143
|
export declare type JiraUpdatePriorityFieldInput = {
|
|
38894
39144
|
id: Scalars['ID']['input'];
|
|
38895
39145
|
operation: JiraPriorityFieldOperationInput;
|
|
@@ -40363,6 +40613,16 @@ export declare type JsmChatCreateChannelOutput = {
|
|
|
40363
40613
|
message: Scalars['String']['output'];
|
|
40364
40614
|
status: Scalars['Boolean']['output'];
|
|
40365
40615
|
};
|
|
40616
|
+
export declare type JsmChatCreateCommentInput = {
|
|
40617
|
+
jiraIssueAri: Scalars['ID']['input'];
|
|
40618
|
+
message: Scalars['String']['input'];
|
|
40619
|
+
messageSource: Scalars['String']['input'];
|
|
40620
|
+
};
|
|
40621
|
+
export declare type JsmChatCreateCommentOutput = {
|
|
40622
|
+
__typename?: 'JsmChatCreateCommentOutput';
|
|
40623
|
+
message: Scalars['String']['output'];
|
|
40624
|
+
status: Scalars['Boolean']['output'];
|
|
40625
|
+
};
|
|
40366
40626
|
export declare type JsmChatDisconnectJiraProjectInput = {
|
|
40367
40627
|
activationId: Scalars['ID']['input'];
|
|
40368
40628
|
projectId: Scalars['ID']['input'];
|
|
@@ -40374,11 +40634,6 @@ export declare type JsmChatDisconnectJiraProjectResponse = {
|
|
|
40374
40634
|
message: Scalars['String']['output'];
|
|
40375
40635
|
status: Scalars['Boolean']['output'];
|
|
40376
40636
|
};
|
|
40377
|
-
export declare type JsmChatGetSlackChatConfigInput = {
|
|
40378
|
-
activationId: Scalars['ID']['input'];
|
|
40379
|
-
projectId: Scalars['ID']['input'];
|
|
40380
|
-
siteId: Scalars['ID']['input'];
|
|
40381
|
-
};
|
|
40382
40637
|
export declare type JsmChatInitializeConfigRequest = {
|
|
40383
40638
|
activationId: Scalars['ID']['input'];
|
|
40384
40639
|
projectId: Scalars['ID']['input'];
|
|
@@ -40388,9 +40643,14 @@ export declare type JsmChatInitializeConfigResponse = {
|
|
|
40388
40643
|
__typename?: 'JsmChatInitializeConfigResponse';
|
|
40389
40644
|
nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40390
40645
|
};
|
|
40646
|
+
export declare type JsmChatInitializeNativeConfigResponse = {
|
|
40647
|
+
__typename?: 'JsmChatInitializeNativeConfigResponse';
|
|
40648
|
+
nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
40649
|
+
};
|
|
40391
40650
|
export declare type JsmChatMutation = {
|
|
40392
40651
|
__typename?: 'JsmChatMutation';
|
|
40393
40652
|
createChannel: JsmChatCreateChannelOutput;
|
|
40653
|
+
createComment?: Maybe<JsmChatCreateCommentOutput>;
|
|
40394
40654
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
40395
40655
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
40396
40656
|
updateProjectSettings?: Maybe<JsmChatUpdateProjectSettingsOutput>;
|
|
@@ -40398,6 +40658,9 @@ export declare type JsmChatMutation = {
|
|
|
40398
40658
|
export declare type JsmChatMutationCreateChannelArgs = {
|
|
40399
40659
|
input?: InputMaybe<JsmChatCreateChannelInput>;
|
|
40400
40660
|
};
|
|
40661
|
+
export declare type JsmChatMutationCreateCommentArgs = {
|
|
40662
|
+
input: JsmChatCreateCommentInput;
|
|
40663
|
+
};
|
|
40401
40664
|
export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
40402
40665
|
input: JsmChatDisconnectJiraProjectInput;
|
|
40403
40666
|
};
|
|
@@ -40429,13 +40692,17 @@ export declare type JsmChatQuery = {
|
|
|
40429
40692
|
__typename?: 'JsmChatQuery';
|
|
40430
40693
|
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
40431
40694
|
initializeConfig: JsmChatInitializeConfigResponse;
|
|
40695
|
+
initializeNativeConfig: JsmChatInitializeNativeConfigResponse;
|
|
40432
40696
|
};
|
|
40433
40697
|
export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
40434
|
-
|
|
40698
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
40435
40699
|
};
|
|
40436
40700
|
export declare type JsmChatQueryInitializeConfigArgs = {
|
|
40437
40701
|
input: JsmChatInitializeConfigRequest;
|
|
40438
40702
|
};
|
|
40703
|
+
export declare type JsmChatQueryInitializeNativeConfigArgs = {
|
|
40704
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
40705
|
+
};
|
|
40439
40706
|
export declare type JsmChatSlackConfig = {
|
|
40440
40707
|
__typename?: 'JsmChatSlackConfig';
|
|
40441
40708
|
botUserId?: Maybe<Scalars['String']['output']>;
|
|
@@ -40532,9 +40799,14 @@ export declare type KnowledgeDiscoveryEntity = {
|
|
|
40532
40799
|
id: Scalars['ID']['output'];
|
|
40533
40800
|
};
|
|
40534
40801
|
export declare enum KnowledgeDiscoveryEntityType {
|
|
40535
|
-
|
|
40536
|
-
|
|
40537
|
-
|
|
40802
|
+
ConfluenceBlogpost = "CONFLUENCE_BLOGPOST",
|
|
40803
|
+
ConfluenceDocument = "CONFLUENCE_DOCUMENT",
|
|
40804
|
+
ConfluencePage = "CONFLUENCE_PAGE",
|
|
40805
|
+
ConfluenceSpace = "CONFLUENCE_SPACE",
|
|
40806
|
+
JiraProject = "JIRA_PROJECT",
|
|
40807
|
+
KeyPhrase = "KEY_PHRASE",
|
|
40808
|
+
Topic = "TOPIC",
|
|
40809
|
+
User = "USER"
|
|
40538
40810
|
}
|
|
40539
40811
|
export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
40540
40812
|
__typename?: 'KnowledgeDiscoveryKeyPhrase';
|
|
@@ -40561,12 +40833,19 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
40561
40833
|
export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
40562
40834
|
input: KnowledgeDiscoveryCreateDefinitionInput;
|
|
40563
40835
|
};
|
|
40836
|
+
export declare type KnowledgeDiscoveryPageInfo = {
|
|
40837
|
+
__typename?: 'KnowledgeDiscoveryPageInfo';
|
|
40838
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
40839
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
40840
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
40841
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
40842
|
+
};
|
|
40564
40843
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
40565
40844
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
40566
40845
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
40567
40846
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
40568
40847
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
40569
|
-
relatedEntities?: Maybe<
|
|
40848
|
+
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
40570
40849
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
40571
40850
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
40572
40851
|
};
|
|
@@ -40590,10 +40869,10 @@ export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
|
40590
40869
|
export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
40591
40870
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40592
40871
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
40593
|
-
|
|
40872
|
+
entityId: Scalars['String']['input'];
|
|
40873
|
+
entityType: KnowledgeDiscoveryEntityType;
|
|
40594
40874
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40595
|
-
|
|
40596
|
-
relatedEntityType: Scalars['String']['input'];
|
|
40875
|
+
relatedEntityType: KnowledgeDiscoveryEntityType;
|
|
40597
40876
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
40598
40877
|
};
|
|
40599
40878
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
@@ -40606,18 +40885,12 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
40606
40885
|
id: Scalars['String']['input'];
|
|
40607
40886
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
40608
40887
|
};
|
|
40888
|
+
export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
|
|
40609
40889
|
export declare type KnowledgeDiscoveryRelatedEntityConnection = {
|
|
40610
40890
|
__typename?: 'KnowledgeDiscoveryRelatedEntityConnection';
|
|
40611
|
-
|
|
40612
|
-
|
|
40613
|
-
pageInfo: PageInfo;
|
|
40614
|
-
};
|
|
40615
|
-
export declare type KnowledgeDiscoveryRelatedEntityEdge = {
|
|
40616
|
-
__typename?: 'KnowledgeDiscoveryRelatedEntityEdge';
|
|
40617
|
-
edgeCursor: Scalars['String']['output'];
|
|
40618
|
-
node?: Maybe<KnowledgeDiscoveryRelatedEntityResult>;
|
|
40891
|
+
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
|
|
40892
|
+
pageInfo: KnowledgeDiscoveryPageInfo;
|
|
40619
40893
|
};
|
|
40620
|
-
export declare type KnowledgeDiscoveryRelatedEntityResult = KnowledgeDiscoveryTopic | QueryError;
|
|
40621
40894
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
40622
40895
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
40623
40896
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -40772,9 +41045,6 @@ export declare enum MarketplaceAppPaymentModel {
|
|
|
40772
41045
|
PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
|
|
40773
41046
|
PaidViaPartner = "PAID_VIA_PARTNER"
|
|
40774
41047
|
}
|
|
40775
|
-
export declare enum MarketplaceAppPermission {
|
|
40776
|
-
ManageAppDetails = "MANAGE_APP_DETAILS"
|
|
40777
|
-
}
|
|
40778
41048
|
export declare type MarketplaceAppPrograms = {
|
|
40779
41049
|
__typename?: 'MarketplaceAppPrograms';
|
|
40780
41050
|
bugBountyParticipant?: Maybe<MarketplaceBugBountyParticipant>;
|
|
@@ -41384,14 +41654,6 @@ export declare type MarketplaceTieredPricing = {
|
|
|
41384
41654
|
tierType: MarketplacePricingTierType;
|
|
41385
41655
|
tiersMode: MarketplacePricingTierMode;
|
|
41386
41656
|
};
|
|
41387
|
-
export declare type MarketplaceUser = {
|
|
41388
|
-
__typename?: 'MarketplaceUser';
|
|
41389
|
-
appPermissions: Array<MarketplaceAppPermission>;
|
|
41390
|
-
id: Scalars['ID']['output'];
|
|
41391
|
-
};
|
|
41392
|
-
export declare type MarketplaceUserAppPermissionsArgs = {
|
|
41393
|
-
appId: Scalars['ID']['input'];
|
|
41394
|
-
};
|
|
41395
41657
|
export declare type MarketplaceWorkflowAppDeployment = MarketplaceAppDeployment & {
|
|
41396
41658
|
__typename?: 'MarketplaceWorkflowAppDeployment';
|
|
41397
41659
|
compatibleProducts: Array<CompatibleAtlassianProduct>;
|
|
@@ -41443,9 +41705,24 @@ export declare type MercuryCreateGoalUpdateWithMetricInput = {
|
|
|
41443
41705
|
};
|
|
41444
41706
|
export declare type MercuryCreateGoalUpdateWithMetricPayload = {
|
|
41445
41707
|
__typename?: 'MercuryCreateGoalUpdateWithMetricPayload';
|
|
41446
|
-
atlasGoalAri: Scalars['String']['output'];
|
|
41447
|
-
atlasGoalId: Scalars['ID']['output'];
|
|
41448
41708
|
errors?: Maybe<Array<MutationError>>;
|
|
41709
|
+
goalUpdate?: Maybe<MercuryGoalUpdate>;
|
|
41710
|
+
success: Scalars['Boolean']['output'];
|
|
41711
|
+
};
|
|
41712
|
+
export declare type MercuryEditGoalInput = {
|
|
41713
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
41714
|
+
goalAri: Scalars['String']['input'];
|
|
41715
|
+
goalStatus?: InputMaybe<MercuryGoalStatus>;
|
|
41716
|
+
metricValue?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
41717
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
41718
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
41719
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
41720
|
+
targetDate?: InputMaybe<MercuryGoalTargetDateInput>;
|
|
41721
|
+
};
|
|
41722
|
+
export declare type MercuryEditGoalPayload = Payload & {
|
|
41723
|
+
__typename?: 'MercuryEditGoalPayload';
|
|
41724
|
+
errors?: Maybe<Array<MutationError>>;
|
|
41725
|
+
goal?: Maybe<MercuryGoal>;
|
|
41449
41726
|
success: Scalars['Boolean']['output'];
|
|
41450
41727
|
};
|
|
41451
41728
|
export declare type MercuryFocusArea = Node & {
|
|
@@ -41572,6 +41849,12 @@ export declare type MercuryGoal = {
|
|
|
41572
41849
|
id: Scalars['ID']['output'];
|
|
41573
41850
|
metric?: Maybe<MercuryMetric>;
|
|
41574
41851
|
};
|
|
41852
|
+
export declare type MercuryGoalAggregatedStatusCount = {
|
|
41853
|
+
__typename?: 'MercuryGoalAggregatedStatusCount';
|
|
41854
|
+
krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
41855
|
+
latestGoalStatusUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
41856
|
+
subGoalsAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
41857
|
+
};
|
|
41575
41858
|
export declare type MercuryGoalConnection = {
|
|
41576
41859
|
__typename?: 'MercuryGoalConnection';
|
|
41577
41860
|
edges?: Maybe<Array<Maybe<MercuryGoalEdge>>>;
|
|
@@ -41586,11 +41869,21 @@ export declare type MercuryGoalEdge = {
|
|
|
41586
41869
|
export declare type MercuryGoalMutationApi = {
|
|
41587
41870
|
__typename?: 'MercuryGoalMutationApi';
|
|
41588
41871
|
createGoal: MercuryCreateGoalPayload;
|
|
41872
|
+
createGoalUpdateWithMetric: MercuryCreateGoalUpdateWithMetricPayload;
|
|
41873
|
+
editGoal: MercuryEditGoalPayload;
|
|
41589
41874
|
};
|
|
41590
41875
|
export declare type MercuryGoalMutationApiCreateGoalArgs = {
|
|
41591
41876
|
cloudId: Scalars['ID']['input'];
|
|
41592
41877
|
input: MercuryCreateGoalInput;
|
|
41593
41878
|
};
|
|
41879
|
+
export declare type MercuryGoalMutationApiCreateGoalUpdateWithMetricArgs = {
|
|
41880
|
+
cloudId: Scalars['ID']['input'];
|
|
41881
|
+
input: MercuryCreateGoalUpdateWithMetricInput;
|
|
41882
|
+
};
|
|
41883
|
+
export declare type MercuryGoalMutationApiEditGoalArgs = {
|
|
41884
|
+
cloudId: Scalars['ID']['input'];
|
|
41885
|
+
input: MercuryEditGoalInput;
|
|
41886
|
+
};
|
|
41594
41887
|
export declare enum MercuryGoalPhase {
|
|
41595
41888
|
Done = "DONE",
|
|
41596
41889
|
InProgress = "IN_PROGRESS",
|
|
@@ -41606,6 +41899,17 @@ export declare enum MercuryGoalStatus {
|
|
|
41606
41899
|
Paused = "PAUSED",
|
|
41607
41900
|
Pending = "PENDING"
|
|
41608
41901
|
}
|
|
41902
|
+
export declare type MercuryGoalStatusCount = {
|
|
41903
|
+
__typename?: 'MercuryGoalStatusCount';
|
|
41904
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
41905
|
+
cancelled?: Maybe<Scalars['Int']['output']>;
|
|
41906
|
+
done?: Maybe<Scalars['Int']['output']>;
|
|
41907
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
41908
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
41909
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
41910
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
41911
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
41912
|
+
};
|
|
41609
41913
|
export declare type MercuryGoalTargetDateInput = {
|
|
41610
41914
|
date?: InputMaybe<Scalars['Date']['input']>;
|
|
41611
41915
|
targetDateType?: InputMaybe<MercuryGoalTargetDateType>;
|
|
@@ -41619,6 +41923,17 @@ export declare enum MercuryGoalType {
|
|
|
41619
41923
|
Goal = "GOAL",
|
|
41620
41924
|
KeyResult = "KEY_RESULT"
|
|
41621
41925
|
}
|
|
41926
|
+
export declare type MercuryGoalUpdate = {
|
|
41927
|
+
__typename?: 'MercuryGoalUpdate';
|
|
41928
|
+
atlasGoalId: Scalars['ID']['output'];
|
|
41929
|
+
atlasGoalUpdateAri: Scalars['String']['output'];
|
|
41930
|
+
atlasGoalUpdateId: Scalars['ID']['output'];
|
|
41931
|
+
};
|
|
41932
|
+
export declare type MercuryGoalsAggregatedStatusCount = {
|
|
41933
|
+
__typename?: 'MercuryGoalsAggregatedStatusCount';
|
|
41934
|
+
current?: Maybe<MercuryGoalStatusCount>;
|
|
41935
|
+
previous?: Maybe<MercuryGoalStatusCount>;
|
|
41936
|
+
};
|
|
41622
41937
|
export declare type MercuryMetric = {
|
|
41623
41938
|
__typename?: 'MercuryMetric';
|
|
41624
41939
|
metricType?: Maybe<MercuryMetricType>;
|
|
@@ -41626,19 +41941,18 @@ export declare type MercuryMetric = {
|
|
|
41626
41941
|
};
|
|
41627
41942
|
export declare type MercuryMetricScoring = {
|
|
41628
41943
|
__typename?: 'MercuryMetricScoring';
|
|
41629
|
-
|
|
41630
|
-
|
|
41631
|
-
|
|
41944
|
+
currentValue?: Maybe<Scalars['BigDecimal']['output']>;
|
|
41945
|
+
startValue?: Maybe<Scalars['BigDecimal']['output']>;
|
|
41946
|
+
targetValue?: Maybe<Scalars['BigDecimal']['output']>;
|
|
41632
41947
|
};
|
|
41633
41948
|
export declare type MercuryMetricScoringInput = {
|
|
41634
|
-
|
|
41635
|
-
|
|
41636
|
-
target?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
41949
|
+
startValue?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
41950
|
+
targetValue?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
41637
41951
|
};
|
|
41638
41952
|
export declare enum MercuryMetricType {
|
|
41639
41953
|
Currency = "CURRENCY",
|
|
41640
41954
|
Number = "NUMBER",
|
|
41641
|
-
|
|
41955
|
+
Percentage = "PERCENTAGE"
|
|
41642
41956
|
}
|
|
41643
41957
|
export declare type MercuryQueryApi = {
|
|
41644
41958
|
__typename?: 'MercuryQueryApi';
|
|
@@ -44449,7 +44763,7 @@ export declare type Properties = {
|
|
|
44449
44763
|
updatedValues?: Maybe<Scalars['String']['output']>;
|
|
44450
44764
|
};
|
|
44451
44765
|
export declare type PullRequestStatusInTimeRangeQueryFilter = {
|
|
44452
|
-
status:
|
|
44766
|
+
status: CompassPullRequestStatusForStatusInTimeRangeFilter;
|
|
44453
44767
|
timeRange: CompassQueryTimeRange;
|
|
44454
44768
|
};
|
|
44455
44769
|
export declare type Query = {
|
|
@@ -44551,7 +44865,6 @@ export declare type Query = {
|
|
|
44551
44865
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
44552
44866
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
44553
44867
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
44554
|
-
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
44555
44868
|
me: AuthenticationContext;
|
|
44556
44869
|
mercury?: Maybe<MercuryQueryApi>;
|
|
44557
44870
|
migration: MigrationQuery;
|
|
@@ -44594,6 +44907,7 @@ export declare type Query = {
|
|
|
44594
44907
|
signup?: Maybe<SignupQueryApi>;
|
|
44595
44908
|
smarts?: Maybe<SmartsQueryApi>;
|
|
44596
44909
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
44910
|
+
squadNameById?: Maybe<SupportInquirySquad>;
|
|
44597
44911
|
suggestions?: Maybe<AutoSuggestionApi>;
|
|
44598
44912
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
44599
44913
|
team?: Maybe<TeamQuery>;
|
|
@@ -46373,6 +46687,7 @@ export declare type SearchAnalyticsInput = {
|
|
|
46373
46687
|
queryVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
46374
46688
|
searchReferrerId?: InputMaybe<Scalars['String']['input']>;
|
|
46375
46689
|
searchSessionId?: InputMaybe<Scalars['String']['input']>;
|
|
46690
|
+
sourceProduct?: InputMaybe<Scalars['String']['input']>;
|
|
46376
46691
|
};
|
|
46377
46692
|
export declare type SearchBoardFilter = {
|
|
46378
46693
|
negateProjectFilter?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46466,6 +46781,9 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
46466
46781
|
type: SearchResultType;
|
|
46467
46782
|
url: Scalars['URL']['output'];
|
|
46468
46783
|
};
|
|
46784
|
+
export declare type SearchExperimentContextInput = {
|
|
46785
|
+
experimentId?: InputMaybe<Scalars['String']['input']>;
|
|
46786
|
+
};
|
|
46469
46787
|
export declare type SearchExternalContainerFilter = {
|
|
46470
46788
|
type: Scalars['String']['input'];
|
|
46471
46789
|
values: Array<Scalars['String']['input']>;
|
|
@@ -46491,6 +46809,10 @@ export declare type SearchFilterInput = {
|
|
|
46491
46809
|
locations: Array<Scalars['String']['input']>;
|
|
46492
46810
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
46493
46811
|
};
|
|
46812
|
+
export declare type SearchInterleaverScrapingResult = {
|
|
46813
|
+
__typename?: 'SearchInterleaverScrapingResult';
|
|
46814
|
+
rerankerRequestInJSON: Scalars['String']['output'];
|
|
46815
|
+
};
|
|
46494
46816
|
export declare enum SearchIssueStatusCategory {
|
|
46495
46817
|
Done = "DONE",
|
|
46496
46818
|
Open = "OPEN"
|
|
@@ -46499,6 +46821,7 @@ export declare type SearchItemConnection = {
|
|
|
46499
46821
|
__typename?: 'SearchItemConnection';
|
|
46500
46822
|
abTest?: Maybe<SearchAbTest>;
|
|
46501
46823
|
edges: Array<SearchResultItemEdge>;
|
|
46824
|
+
interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
|
|
46502
46825
|
pageInfo: PageInfo;
|
|
46503
46826
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46504
46827
|
};
|
|
@@ -46539,6 +46862,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
46539
46862
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
46540
46863
|
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46541
46864
|
experience: Scalars['String']['input'];
|
|
46865
|
+
experimentContext?: InputMaybe<SearchExperimentContextInput>;
|
|
46542
46866
|
filters: SearchFilterInput;
|
|
46543
46867
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46544
46868
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -46580,6 +46904,7 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
46580
46904
|
export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
46581
46905
|
__typename?: 'SearchResultBitbucketRepository';
|
|
46582
46906
|
description: Scalars['String']['output'];
|
|
46907
|
+
fullRepoName: Scalars['String']['output'];
|
|
46583
46908
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
46584
46909
|
id: Scalars['ID']['output'];
|
|
46585
46910
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -46731,6 +47056,8 @@ export declare type SearchResultTrelloBoard = SearchResult & {
|
|
|
46731
47056
|
};
|
|
46732
47057
|
export declare type SearchResultTrelloCard = SearchResult & {
|
|
46733
47058
|
__typename?: 'SearchResultTrelloCard';
|
|
47059
|
+
boardName?: Maybe<Scalars['String']['output']>;
|
|
47060
|
+
commentsCount: Scalars['Int']['output'];
|
|
46734
47061
|
description: Scalars['String']['output'];
|
|
46735
47062
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
46736
47063
|
id: Scalars['ID']['output'];
|
|
@@ -46750,6 +47077,7 @@ export declare enum SearchResultType {
|
|
|
46750
47077
|
Document = "document",
|
|
46751
47078
|
Embed = "embed",
|
|
46752
47079
|
Filter = "filter",
|
|
47080
|
+
Folder = "folder",
|
|
46753
47081
|
Goal = "goal",
|
|
46754
47082
|
Issue = "issue",
|
|
46755
47083
|
Learning = "learning",
|
|
@@ -47485,8 +47813,12 @@ export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
|
47485
47813
|
export declare type ShepherdDetectionResourceExclusion = {
|
|
47486
47814
|
__typename?: 'ShepherdDetectionResourceExclusion';
|
|
47487
47815
|
ari: Scalars['ID']['output'];
|
|
47816
|
+
classificationId?: Maybe<Scalars['ID']['output']>;
|
|
47817
|
+
containerTitle?: Maybe<Scalars['String']['output']>;
|
|
47488
47818
|
createdBy?: Maybe<Scalars['ID']['output']>;
|
|
47819
|
+
createdByUser?: Maybe<User>;
|
|
47489
47820
|
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
47821
|
+
resourceTitle?: Maybe<Scalars['String']['output']>;
|
|
47490
47822
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
47491
47823
|
};
|
|
47492
47824
|
export declare enum ShepherdDetectionScanningFrequency {
|
|
@@ -47770,8 +48102,10 @@ export declare enum ShepherdRemediationActionType {
|
|
|
47770
48102
|
EditCustomDetectionRemediation = "EDIT_CUSTOM_DETECTION_REMEDIATION",
|
|
47771
48103
|
ExcludePageRemediation = "EXCLUDE_PAGE_REMEDIATION",
|
|
47772
48104
|
ExportsDspRemediation = "EXPORTS_DSP_REMEDIATION",
|
|
48105
|
+
ExportDspRemediation = "EXPORT_DSP_REMEDIATION",
|
|
47773
48106
|
ExportSpacePermissionsRemediation = "EXPORT_SPACE_PERMISSIONS_REMEDIATION",
|
|
47774
48107
|
JiraGlobalPermissionsRemediation = "JIRA_GLOBAL_PERMISSIONS_REMEDIATION",
|
|
48108
|
+
KeyOwnerRemediation = "KEY_OWNER_REMEDIATION",
|
|
47775
48109
|
LimitJiraPermissionsRemediation = "LIMIT_JIRA_PERMISSIONS_REMEDIATION",
|
|
47776
48110
|
ManageAppsRemediation = "MANAGE_APPS_REMEDIATION",
|
|
47777
48111
|
ManageDomainRemediation = "MANAGE_DOMAIN_REMEDIATION",
|
|
@@ -47779,6 +48113,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
47779
48113
|
PublicAccessDspRemediation = "PUBLIC_ACCESS_DSP_REMEDIATION",
|
|
47780
48114
|
RestoreAccessRemediation = "RESTORE_ACCESS_REMEDIATION",
|
|
47781
48115
|
ReviewAccessRemediation = "REVIEW_ACCESS_REMEDIATION",
|
|
48116
|
+
ReviewApiKeysRemediation = "REVIEW_API_KEYS_REMEDIATION",
|
|
47782
48117
|
ReviewApiTokensRemediation = "REVIEW_API_TOKENS_REMEDIATION",
|
|
47783
48118
|
ReviewAuditLogRemediation = "REVIEW_AUDIT_LOG_REMEDIATION",
|
|
47784
48119
|
ReviewAuthPolicyRemediation = "REVIEW_AUTH_POLICY_REMEDIATION",
|
|
@@ -48424,6 +48759,11 @@ export declare type Subscription = {
|
|
|
48424
48759
|
testing?: Maybe<TestingSubscription>;
|
|
48425
48760
|
trello: TrelloSubscriptionApi;
|
|
48426
48761
|
};
|
|
48762
|
+
export declare type SupportInquirySquad = {
|
|
48763
|
+
__typename?: 'SupportInquirySquad';
|
|
48764
|
+
id: Scalars['ID']['output'];
|
|
48765
|
+
squadName?: Maybe<Scalars['String']['output']>;
|
|
48766
|
+
};
|
|
48427
48767
|
export declare type SupportRequest = {
|
|
48428
48768
|
__typename?: 'SupportRequest';
|
|
48429
48769
|
activities: SupportRequestActivities;
|
|
@@ -51048,7 +51388,7 @@ export declare type UnassignIssueParentOutput = MutationResponse & {
|
|
|
51048
51388
|
export declare type UnifiedAccount = {
|
|
51049
51389
|
__typename?: 'UnifiedAccount';
|
|
51050
51390
|
aaid: Scalars['ID']['output'];
|
|
51051
|
-
|
|
51391
|
+
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
|
|
51052
51392
|
parentAccountEmailId?: Maybe<Scalars['String']['output']>;
|
|
51053
51393
|
parentAccountInternalId?: Maybe<Scalars['String']['output']>;
|
|
51054
51394
|
};
|
|
@@ -51087,12 +51427,12 @@ export declare type UnifiedForumsUser = {
|
|
|
51087
51427
|
export declare type UnifiedLinkedAccount = {
|
|
51088
51428
|
__typename?: 'UnifiedLinkedAccount';
|
|
51089
51429
|
aaid: Scalars['ID']['output'];
|
|
51090
|
-
|
|
51430
|
+
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
|
|
51091
51431
|
parentAccountInternalId?: Maybe<Scalars['String']['output']>;
|
|
51092
51432
|
};
|
|
51093
51433
|
export declare type UnifiedLinkedAccountInput = {
|
|
51094
51434
|
aaid: Scalars['String']['input'];
|
|
51095
|
-
|
|
51435
|
+
connectedProductsReferenceId?: InputMaybe<Scalars['String']['input']>;
|
|
51096
51436
|
parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
51097
51437
|
};
|
|
51098
51438
|
export declare type UnifiedLinkedCreateAccountSuccess = {
|
|
@@ -51420,6 +51760,19 @@ export declare type UpdateCompassUserDefinedParametersPayload = Payload & {
|
|
|
51420
51760
|
success: Scalars['Boolean']['output'];
|
|
51421
51761
|
userParameterDetails?: Maybe<CompassUserDefinedParameters>;
|
|
51422
51762
|
};
|
|
51763
|
+
export declare type UpdateComponentApiInput = {
|
|
51764
|
+
componentId: Scalars['String']['input'];
|
|
51765
|
+
defaultTag?: InputMaybe<Scalars['String']['input']>;
|
|
51766
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
51767
|
+
repo?: InputMaybe<CompassComponentApiRepoUpdate>;
|
|
51768
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
51769
|
+
};
|
|
51770
|
+
export declare type UpdateComponentApiPayload = {
|
|
51771
|
+
__typename?: 'UpdateComponentApiPayload';
|
|
51772
|
+
api?: Maybe<CompassComponentApi>;
|
|
51773
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
51774
|
+
success: Scalars['Boolean']['output'];
|
|
51775
|
+
};
|
|
51423
51776
|
export declare type UpdateCustomFilterInput = {
|
|
51424
51777
|
boardId: Scalars['ID']['input'];
|
|
51425
51778
|
description?: InputMaybe<Scalars['String']['input']>;
|