@forge/cli-shared 6.9.0-next.4 → 6.9.0-next.5
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 +8 -0
- package/out/graphql/graphql-types.d.ts +243 -39
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +31 -42
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9554,6 +9554,12 @@ export declare type ConfluenceCommentCountSummary = {
|
|
|
9554
9554
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
9555
9555
|
total?: Maybe<Scalars['Int']['output']>;
|
|
9556
9556
|
};
|
|
9557
|
+
export declare type ConfluenceCommentCreated = {
|
|
9558
|
+
__typename?: 'ConfluenceCommentCreated';
|
|
9559
|
+
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
9560
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
9561
|
+
pageCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
9562
|
+
};
|
|
9557
9563
|
export declare type ConfluenceCommentFilter = {
|
|
9558
9564
|
commentState?: InputMaybe<Array<InputMaybe<ConfluenceCommentState>>>;
|
|
9559
9565
|
commentType?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
@@ -9567,20 +9573,6 @@ export declare type ConfluenceCommentLinks = {
|
|
|
9567
9573
|
base?: Maybe<Scalars['String']['output']>;
|
|
9568
9574
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
9569
9575
|
};
|
|
9570
|
-
export declare type ConfluenceCommentModified = {
|
|
9571
|
-
__typename?: 'ConfluenceCommentModified';
|
|
9572
|
-
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
9573
|
-
commentId?: Maybe<Scalars['ID']['output']>;
|
|
9574
|
-
eventType?: Maybe<ConfluenceCommentModifiedType>;
|
|
9575
|
-
pageCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
9576
|
-
};
|
|
9577
|
-
export declare enum ConfluenceCommentModifiedType {
|
|
9578
|
-
CommentCreated = "COMMENT_CREATED",
|
|
9579
|
-
CommentDeleted = "COMMENT_DELETED",
|
|
9580
|
-
CommentReopened = "COMMENT_REOPENED",
|
|
9581
|
-
CommentResolved = "COMMENT_RESOLVED",
|
|
9582
|
-
CommentUpdated = "COMMENT_UPDATED"
|
|
9583
|
-
}
|
|
9584
9576
|
export declare type ConfluenceCommentResolutionState = {
|
|
9585
9577
|
__typename?: 'ConfluenceCommentResolutionState';
|
|
9586
9578
|
commentId: Scalars['ID']['output'];
|
|
@@ -9599,6 +9591,10 @@ export declare enum ConfluenceCommentType {
|
|
|
9599
9591
|
Footer = "FOOTER",
|
|
9600
9592
|
Inline = "INLINE"
|
|
9601
9593
|
}
|
|
9594
|
+
export declare type ConfluenceCommentUpdated = {
|
|
9595
|
+
__typename?: 'ConfluenceCommentUpdated';
|
|
9596
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
9597
|
+
};
|
|
9602
9598
|
export declare type ConfluenceContent = {
|
|
9603
9599
|
__typename?: 'ConfluenceContent';
|
|
9604
9600
|
contentTitleUpdate?: Maybe<ConfluenceContentTitleUpdate>;
|
|
@@ -9631,7 +9627,11 @@ export declare type ConfluenceContentMetadata = {
|
|
|
9631
9627
|
export declare type ConfluenceContentModified = {
|
|
9632
9628
|
__typename?: 'ConfluenceContentModified';
|
|
9633
9629
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
9634
|
-
|
|
9630
|
+
commentCreated?: Maybe<ConfluenceCommentCreated>;
|
|
9631
|
+
commentDeleted?: Maybe<ConfluenceCommentUpdated>;
|
|
9632
|
+
commentReopened?: Maybe<ConfluenceCommentUpdated>;
|
|
9633
|
+
commentResolved?: Maybe<ConfluenceCommentCreated>;
|
|
9634
|
+
commentUpdated?: Maybe<ConfluenceCommentUpdated>;
|
|
9635
9635
|
contentRestrictionUpdated?: Maybe<ConfluenceContentRestrictionUpdated>;
|
|
9636
9636
|
contentStateDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9637
9637
|
contentStateUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
@@ -9640,16 +9640,23 @@ export declare type ConfluenceContentModified = {
|
|
|
9640
9640
|
coverPictureDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9641
9641
|
coverPictureUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9642
9642
|
coverPictureWidthUpdated?: Maybe<ConfluenceCoverPictureWidthUpdated>;
|
|
9643
|
+
editorInlineCommentCreated?: Maybe<ConfluenceInlineCommentCreated>;
|
|
9643
9644
|
embedUpdated?: Maybe<ConfluenceEmbedUpdated>;
|
|
9644
9645
|
emojiTitleDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9645
9646
|
emojiTitleUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9646
9647
|
id: Scalars['ID']['output'];
|
|
9647
|
-
|
|
9648
|
+
inlineCommentCreated?: Maybe<ConfluenceInlineCommentCreated>;
|
|
9649
|
+
inlineCommentDeleted?: Maybe<ConfluenceInlineCommentDeleted>;
|
|
9650
|
+
inlineCommentReattached?: Maybe<ConfluenceInlineCommentReattached>;
|
|
9651
|
+
inlineCommentResolved?: Maybe<ConfluenceInlineCommentResolved>;
|
|
9652
|
+
inlineCommentUnresolved?: Maybe<ConfluenceInlineCommentUpdated>;
|
|
9653
|
+
inlineCommentUpdated?: Maybe<ConfluenceInlineCommentUpdated>;
|
|
9648
9654
|
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
9649
9655
|
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
9650
9656
|
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
9651
9657
|
pageTitlePropertyUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9652
9658
|
pageUpdated?: Maybe<ConfluencePageUpdated>;
|
|
9659
|
+
rendererInlineCommentCreated?: Maybe<ConfluenceRendererInlineCommentCreated>;
|
|
9653
9660
|
schedulePublished?: Maybe<ConfluenceSchedulePublished>;
|
|
9654
9661
|
type: ConfluenceSubscriptionContentType;
|
|
9655
9662
|
};
|
|
@@ -10117,28 +10124,26 @@ export declare type ConfluenceInlineComment = ConfluenceComment & {
|
|
|
10117
10124
|
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
10118
10125
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
10119
10126
|
};
|
|
10120
|
-
export declare type
|
|
10121
|
-
__typename?: '
|
|
10127
|
+
export declare type ConfluenceInlineCommentCreated = {
|
|
10128
|
+
__typename?: 'ConfluenceInlineCommentCreated';
|
|
10122
10129
|
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
10123
10130
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10124
|
-
eventType?: Maybe<ConfluenceInlineCommentModifiedType>;
|
|
10125
10131
|
inlineCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
10126
|
-
|
|
10127
|
-
|
|
10132
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10133
|
+
};
|
|
10134
|
+
export declare type ConfluenceInlineCommentDeleted = {
|
|
10135
|
+
__typename?: 'ConfluenceInlineCommentDeleted';
|
|
10136
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10137
|
+
inlineCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
10138
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10139
|
+
};
|
|
10140
|
+
export declare type ConfluenceInlineCommentReattached = {
|
|
10141
|
+
__typename?: 'ConfluenceInlineCommentReattached';
|
|
10142
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10128
10143
|
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10129
10144
|
publishVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
10130
10145
|
step?: Maybe<ConfluenceInlineCommentStep>;
|
|
10131
10146
|
};
|
|
10132
|
-
export declare enum ConfluenceInlineCommentModifiedType {
|
|
10133
|
-
EditorInlineCommentCreated = "EDITOR_INLINE_COMMENT_CREATED",
|
|
10134
|
-
InlineCommentCreated = "INLINE_COMMENT_CREATED",
|
|
10135
|
-
InlineCommentDeleted = "INLINE_COMMENT_DELETED",
|
|
10136
|
-
InlineCommentReattached = "INLINE_COMMENT_REATTACHED",
|
|
10137
|
-
InlineCommentResolved = "INLINE_COMMENT_RESOLVED",
|
|
10138
|
-
InlineCommentUnresolved = "INLINE_COMMENT_UNRESOLVED",
|
|
10139
|
-
InlineCommentUpdated = "INLINE_COMMENT_UPDATED",
|
|
10140
|
-
RendererInlineCommentCreated = "RENDERER_INLINE_COMMENT_CREATED"
|
|
10141
|
-
}
|
|
10142
10147
|
export declare enum ConfluenceInlineCommentResolutionStatus {
|
|
10143
10148
|
Resolved = "RESOLVED",
|
|
10144
10149
|
Unresolved = "UNRESOLVED"
|
|
@@ -10152,6 +10157,13 @@ export declare type ConfluenceInlineCommentResolveProperties = {
|
|
|
10152
10157
|
resolvedTime?: Maybe<Scalars['String']['output']>;
|
|
10153
10158
|
resolvedUser?: Maybe<Scalars['String']['output']>;
|
|
10154
10159
|
};
|
|
10160
|
+
export declare type ConfluenceInlineCommentResolved = {
|
|
10161
|
+
__typename?: 'ConfluenceInlineCommentResolved';
|
|
10162
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10163
|
+
inlineResolveProperties?: Maybe<ConfluenceInlineCommentResolveProperties>;
|
|
10164
|
+
inlineText?: Maybe<Scalars['String']['output']>;
|
|
10165
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10166
|
+
};
|
|
10155
10167
|
export declare type ConfluenceInlineCommentStep = {
|
|
10156
10168
|
__typename?: 'ConfluenceInlineCommentStep';
|
|
10157
10169
|
from?: Maybe<Scalars['Int']['output']>;
|
|
@@ -10167,6 +10179,11 @@ export declare type ConfluenceInlineCommentStepMarkAttrs = {
|
|
|
10167
10179
|
__typename?: 'ConfluenceInlineCommentStepMarkAttrs';
|
|
10168
10180
|
annotationType?: Maybe<Scalars['String']['output']>;
|
|
10169
10181
|
};
|
|
10182
|
+
export declare type ConfluenceInlineCommentUpdated = {
|
|
10183
|
+
__typename?: 'ConfluenceInlineCommentUpdated';
|
|
10184
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10185
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10186
|
+
};
|
|
10170
10187
|
export declare type ConfluenceInlineTask = {
|
|
10171
10188
|
__typename?: 'ConfluenceInlineTask';
|
|
10172
10189
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -16341,6 +16358,15 @@ export declare type ConfluenceRedactionMetadataEdge = {
|
|
|
16341
16358
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
16342
16359
|
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
16343
16360
|
};
|
|
16361
|
+
export declare type ConfluenceRendererInlineCommentCreated = {
|
|
16362
|
+
__typename?: 'ConfluenceRendererInlineCommentCreated';
|
|
16363
|
+
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
16364
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
16365
|
+
inlineCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
16366
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
16367
|
+
publishVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
16368
|
+
step?: Maybe<ConfluenceInlineCommentStep>;
|
|
16369
|
+
};
|
|
16344
16370
|
export declare type ConfluenceReopenCommentPayload = Payload & {
|
|
16345
16371
|
__typename?: 'ConfluenceReopenCommentPayload';
|
|
16346
16372
|
commentResolutionStates?: Maybe<ConfluenceCommentResolutionState>;
|
|
@@ -19687,8 +19713,6 @@ export declare type CreateAppTunnelsInput = {
|
|
|
19687
19713
|
tunnelDefinitions: TunnelDefinitionsInput;
|
|
19688
19714
|
};
|
|
19689
19715
|
export declare type CreateAppVersionRolloutInput = {
|
|
19690
|
-
appEnvironmentId: Scalars['ID']['input'];
|
|
19691
|
-
appId: Scalars['ID']['input'];
|
|
19692
19716
|
sourceVersionId: Scalars['ID']['input'];
|
|
19693
19717
|
targetVersionId: Scalars['ID']['input'];
|
|
19694
19718
|
};
|
|
@@ -31450,6 +31474,7 @@ export declare type GraphStore = {
|
|
|
31450
31474
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
31451
31475
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
31452
31476
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
31477
|
+
cypherQueryV2: GraphStoreCypherQueryV2Connection;
|
|
31453
31478
|
deploymentAssociatedRepo?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoConnection>;
|
|
31454
31479
|
deploymentAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoInverseConnection>;
|
|
31455
31480
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
@@ -31751,6 +31776,8 @@ export declare type GraphStore = {
|
|
|
31751
31776
|
projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
|
|
31752
31777
|
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
31753
31778
|
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
31779
|
+
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
31780
|
+
scorecardHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection>;
|
|
31754
31781
|
securityContainerAssociatedToVulnerability?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31755
31782
|
securityContainerAssociatedToVulnerabilityBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
31756
31783
|
securityContainerAssociatedToVulnerabilityInverse?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityInverseConnection>;
|
|
@@ -32663,6 +32690,12 @@ export declare type GraphStoreCypherQueryArgs = {
|
|
|
32663
32690
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32664
32691
|
query: Scalars['String']['input'];
|
|
32665
32692
|
};
|
|
32693
|
+
export declare type GraphStoreCypherQueryV2Args = {
|
|
32694
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32695
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32696
|
+
params?: InputMaybe<Scalars['JSON']['input']>;
|
|
32697
|
+
query: Scalars['String']['input'];
|
|
32698
|
+
};
|
|
32666
32699
|
export declare type GraphStoreDeploymentAssociatedRepoArgs = {
|
|
32667
32700
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32668
32701
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34607,6 +34640,20 @@ export declare type GraphStorePullRequestLinksToServiceInverseArgs = {
|
|
|
34607
34640
|
id: Scalars['ID']['input'];
|
|
34608
34641
|
sort?: InputMaybe<GraphStorePullRequestLinksToServiceSortInput>;
|
|
34609
34642
|
};
|
|
34643
|
+
export declare type GraphStoreScorecardHasAtlasGoalArgs = {
|
|
34644
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34645
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34646
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34647
|
+
id: Scalars['ID']['input'];
|
|
34648
|
+
sort?: InputMaybe<GraphStoreScorecardHasAtlasGoalSortInput>;
|
|
34649
|
+
};
|
|
34650
|
+
export declare type GraphStoreScorecardHasAtlasGoalInverseArgs = {
|
|
34651
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34652
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34653
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34654
|
+
id: Scalars['ID']['input'];
|
|
34655
|
+
sort?: InputMaybe<GraphStoreScorecardHasAtlasGoalSortInput>;
|
|
34656
|
+
};
|
|
34610
34657
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityArgs = {
|
|
34611
34658
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34612
34659
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38050,7 +38097,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38050
38097
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38051
38098
|
id: Scalars['ID']['output'];
|
|
38052
38099
|
};
|
|
38053
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38100
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38054
38101
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38055
38102
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38056
38103
|
value: Scalars['Int']['output'];
|
|
@@ -38085,7 +38132,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
38085
38132
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
38086
38133
|
id: Scalars['ID']['output'];
|
|
38087
38134
|
};
|
|
38088
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38135
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38089
38136
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
38090
38137
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
38091
38138
|
value: Scalars['String']['output'];
|
|
@@ -38095,8 +38142,53 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
38095
38142
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
38096
38143
|
id: Scalars['ID']['output'];
|
|
38097
38144
|
};
|
|
38098
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38099
|
-
export declare type
|
|
38145
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38146
|
+
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
38147
|
+
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
38148
|
+
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
38149
|
+
id: Scalars['ID']['output'];
|
|
38150
|
+
};
|
|
38151
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38152
|
+
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
38153
|
+
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
38154
|
+
value: Scalars['Boolean']['output'];
|
|
38155
|
+
};
|
|
38156
|
+
export declare type GraphStoreCypherQueryV2Column = {
|
|
38157
|
+
__typename?: 'GraphStoreCypherQueryV2Column';
|
|
38158
|
+
key: Scalars['String']['output'];
|
|
38159
|
+
value: GraphStoreCypherQueryV2ResultRowItemValueUnion;
|
|
38160
|
+
};
|
|
38161
|
+
export declare type GraphStoreCypherQueryV2Connection = {
|
|
38162
|
+
__typename?: 'GraphStoreCypherQueryV2Connection';
|
|
38163
|
+
edges: Array<GraphStoreCypherQueryV2Edge>;
|
|
38164
|
+
pageInfo: PageInfo;
|
|
38165
|
+
};
|
|
38166
|
+
export declare type GraphStoreCypherQueryV2Edge = {
|
|
38167
|
+
__typename?: 'GraphStoreCypherQueryV2Edge';
|
|
38168
|
+
node: GraphStoreCypherQueryV2Node;
|
|
38169
|
+
};
|
|
38170
|
+
export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
38171
|
+
__typename?: 'GraphStoreCypherQueryV2FloatObject';
|
|
38172
|
+
value: Scalars['Float']['output'];
|
|
38173
|
+
};
|
|
38174
|
+
export declare type GraphStoreCypherQueryV2IntObject = {
|
|
38175
|
+
__typename?: 'GraphStoreCypherQueryV2IntObject';
|
|
38176
|
+
value: Scalars['Int']['output'];
|
|
38177
|
+
};
|
|
38178
|
+
export declare type GraphStoreCypherQueryV2Node = {
|
|
38179
|
+
__typename?: 'GraphStoreCypherQueryV2Node';
|
|
38180
|
+
columns: Array<GraphStoreCypherQueryV2Column>;
|
|
38181
|
+
};
|
|
38182
|
+
export declare type GraphStoreCypherQueryV2NodeList = {
|
|
38183
|
+
__typename?: 'GraphStoreCypherQueryV2NodeList';
|
|
38184
|
+
nodes: Array<GraphStoreCypherQueryV2AriNode>;
|
|
38185
|
+
};
|
|
38186
|
+
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2StringObject;
|
|
38187
|
+
export declare type GraphStoreCypherQueryV2StringObject = {
|
|
38188
|
+
__typename?: 'GraphStoreCypherQueryV2StringObject';
|
|
38189
|
+
value: Scalars['String']['output'];
|
|
38190
|
+
};
|
|
38191
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38100
38192
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
38101
38193
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
38102
38194
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -43049,6 +43141,9 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
43049
43141
|
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
43050
43142
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43051
43143
|
};
|
|
43144
|
+
export declare type GraphStoreScorecardHasAtlasGoalSortInput = {
|
|
43145
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43146
|
+
};
|
|
43052
43147
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
43053
43148
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43054
43149
|
};
|
|
@@ -46816,6 +46911,34 @@ export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseEdge = {
|
|
|
46816
46911
|
};
|
|
46817
46912
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
46818
46913
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceUnion = DevOpsService;
|
|
46914
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalConnection = HasPageInfo & {
|
|
46915
|
+
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalConnection';
|
|
46916
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalEdge>>>;
|
|
46917
|
+
pageInfo: PageInfo;
|
|
46918
|
+
};
|
|
46919
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalEdge = {
|
|
46920
|
+
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalEdge';
|
|
46921
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46922
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46923
|
+
id: Scalars['ID']['output'];
|
|
46924
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46925
|
+
node?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalUnion>;
|
|
46926
|
+
};
|
|
46927
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection = HasPageInfo & {
|
|
46928
|
+
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalInverseConnection';
|
|
46929
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseEdge>>>;
|
|
46930
|
+
pageInfo: PageInfo;
|
|
46931
|
+
};
|
|
46932
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalInverseEdge = {
|
|
46933
|
+
__typename?: 'GraphStoreSimplifiedScorecardHasAtlasGoalInverseEdge';
|
|
46934
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46935
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46936
|
+
id: Scalars['ID']['output'];
|
|
46937
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46938
|
+
node?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalInverseUnion>;
|
|
46939
|
+
};
|
|
46940
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalInverseUnion = CompassScorecard;
|
|
46941
|
+
export declare type GraphStoreSimplifiedScorecardHasAtlasGoalUnion = TownsquareGoal;
|
|
46819
46942
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
46820
46943
|
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityConnection';
|
|
46821
46944
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge>>>;
|
|
@@ -57623,6 +57746,7 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
57623
57746
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
57624
57747
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57625
57748
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
57749
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
57626
57750
|
};
|
|
57627
57751
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
57628
57752
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58179,8 +58303,10 @@ export declare type JiraExportIssueDetailsTaskResponse = {
|
|
|
58179
58303
|
};
|
|
58180
58304
|
export declare type JiraExtensionRenderingContextInput = {
|
|
58181
58305
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
58306
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58182
58307
|
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
58183
58308
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
58309
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58184
58310
|
};
|
|
58185
58311
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
58186
58312
|
__typename?: 'JiraFallbackField';
|
|
@@ -58426,6 +58552,7 @@ export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
|
58426
58552
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
58427
58553
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58428
58554
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58555
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
58429
58556
|
};
|
|
58430
58557
|
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
58431
58558
|
export declare type JiraFieldSetsMutationInput = {
|
|
@@ -58443,6 +58570,7 @@ export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
|
58443
58570
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
58444
58571
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58445
58572
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58573
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
58446
58574
|
};
|
|
58447
58575
|
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
58448
58576
|
__typename?: 'JiraFieldSetsViewPayload';
|
|
@@ -59241,6 +59369,7 @@ export declare type JiraGroupedListViewFieldSetsArgs = {
|
|
|
59241
59369
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
59242
59370
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59243
59371
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
59372
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
59244
59373
|
};
|
|
59245
59374
|
export declare type JiraGroupedListViewGroupsArgs = {
|
|
59246
59375
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60618,6 +60747,16 @@ export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
|
60618
60747
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
60619
60748
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
60620
60749
|
};
|
|
60750
|
+
export declare type JiraIssueSearchFieldMetadataConnection = {
|
|
60751
|
+
__typename?: 'JiraIssueSearchFieldMetadataConnection';
|
|
60752
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldMetadataEdge>>>;
|
|
60753
|
+
pageInfo: PageInfo;
|
|
60754
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
60755
|
+
};
|
|
60756
|
+
export declare type JiraIssueSearchFieldMetadataEdge = {
|
|
60757
|
+
__typename?: 'JiraIssueSearchFieldMetadataEdge';
|
|
60758
|
+
node?: Maybe<JiraIssueSearchMetadataField>;
|
|
60759
|
+
};
|
|
60621
60760
|
export declare type JiraIssueSearchFieldSet = {
|
|
60622
60761
|
__typename?: 'JiraIssueSearchFieldSet';
|
|
60623
60762
|
aliases?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -60626,6 +60765,7 @@ export declare type JiraIssueSearchFieldSet = {
|
|
|
60626
60765
|
fieldSetId?: Maybe<Scalars['String']['output']>;
|
|
60627
60766
|
fieldSetPreferences?: Maybe<JiraFieldSetPreferences>;
|
|
60628
60767
|
fieldType?: Maybe<JiraFieldType>;
|
|
60768
|
+
fieldsMetadata?: Maybe<JiraIssueSearchFieldMetadataConnection>;
|
|
60629
60769
|
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
60630
60770
|
isSortable?: Maybe<Scalars['Boolean']['output']>;
|
|
60631
60771
|
jqlTerm?: Maybe<Scalars['String']['output']>;
|
|
@@ -60679,6 +60819,11 @@ export declare type JiraIssueSearchInput = {
|
|
|
60679
60819
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
60680
60820
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
60681
60821
|
};
|
|
60822
|
+
export declare type JiraIssueSearchMetadataField = {
|
|
60823
|
+
__typename?: 'JiraIssueSearchMetadataField';
|
|
60824
|
+
canBeConfigured?: Maybe<Scalars['Boolean']['output']>;
|
|
60825
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
60826
|
+
};
|
|
60682
60827
|
export declare enum JiraIssueSearchOperationScope {
|
|
60683
60828
|
NinGlobal = "NIN_GLOBAL",
|
|
60684
60829
|
NinGlobalSchemaRefactor = "NIN_GLOBAL_SCHEMA_REFACTOR",
|
|
@@ -60712,6 +60857,7 @@ export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
|
60712
60857
|
};
|
|
60713
60858
|
export declare type JiraIssueSearchScope = {
|
|
60714
60859
|
operationScope?: InputMaybe<JiraIssueSearchOperationScope>;
|
|
60860
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
60715
60861
|
};
|
|
60716
60862
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
60717
60863
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61980,6 +62126,7 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
61980
62126
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
61981
62127
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61982
62128
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62129
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61983
62130
|
};
|
|
61984
62131
|
export declare type JiraListViewIssuesArgs = {
|
|
61985
62132
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69155,6 +69302,7 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
69155
69302
|
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
69156
69303
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69157
69304
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69305
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
69158
69306
|
};
|
|
69159
69307
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
69160
69308
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70453,6 +70601,7 @@ export declare type JiraUser = {
|
|
|
70453
70601
|
};
|
|
70454
70602
|
export declare type JiraUserAppAccess = {
|
|
70455
70603
|
__typename?: 'JiraUserAppAccess';
|
|
70604
|
+
enabled: Scalars['Boolean']['output'];
|
|
70456
70605
|
hasAccess: Scalars['Boolean']['output'];
|
|
70457
70606
|
};
|
|
70458
70607
|
export declare type JiraUserBroadcastMessage = Node & {
|
|
@@ -75859,10 +76008,21 @@ export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
|
75859
76008
|
__typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
|
|
75860
76009
|
edition?: Maybe<Scalars['String']['output']>;
|
|
75861
76010
|
installed: Scalars['Boolean']['output'];
|
|
76011
|
+
installedAppManageLink?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
75862
76012
|
licenseActive: Scalars['Boolean']['output'];
|
|
75863
76013
|
licenseExpiryDate?: Maybe<Scalars['String']['output']>;
|
|
75864
76014
|
paidLicenseActiveOnParent: Scalars['Boolean']['output'];
|
|
75865
76015
|
};
|
|
76016
|
+
export declare type MarketplaceStoreInstalledAppManageLink = {
|
|
76017
|
+
__typename?: 'MarketplaceStoreInstalledAppManageLink';
|
|
76018
|
+
type?: Maybe<MarketplaceStoreInstalledAppManageLinkType>;
|
|
76019
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
76020
|
+
};
|
|
76021
|
+
export declare enum MarketplaceStoreInstalledAppManageLinkType {
|
|
76022
|
+
Configure = "CONFIGURE",
|
|
76023
|
+
GetStarted = "GET_STARTED",
|
|
76024
|
+
Manage = "MANAGE"
|
|
76025
|
+
}
|
|
75866
76026
|
export declare type MarketplaceStoreLoggedInUser = {
|
|
75867
76027
|
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
75868
76028
|
email: Scalars['String']['output'];
|
|
@@ -76366,7 +76526,7 @@ export declare type MercuryBudgetAggregation = {
|
|
|
76366
76526
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
76367
76527
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
76368
76528
|
};
|
|
76369
|
-
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
76529
|
+
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryChangeParentFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRenameFocusAreaChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
76370
76530
|
export declare type MercuryChangeConnection = {
|
|
76371
76531
|
__typename?: 'MercuryChangeConnection';
|
|
76372
76532
|
edges?: Maybe<Array<Maybe<MercuryChangeEdge>>>;
|
|
@@ -76387,13 +76547,30 @@ export declare type MercuryChangeInterface = {
|
|
|
76387
76547
|
updatedBy?: Maybe<User>;
|
|
76388
76548
|
updatedDate: Scalars['DateTime']['output'];
|
|
76389
76549
|
};
|
|
76550
|
+
export declare type MercuryChangeParentFocusAreaChange = MercuryChangeInterface & Node & {
|
|
76551
|
+
__typename?: 'MercuryChangeParentFocusAreaChange';
|
|
76552
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
76553
|
+
changeType: MercuryChangeType;
|
|
76554
|
+
createdBy?: Maybe<User>;
|
|
76555
|
+
createdDate: Scalars['DateTime']['output'];
|
|
76556
|
+
focusAreaId?: Maybe<MercuryFocusArea>;
|
|
76557
|
+
id: Scalars['ID']['output'];
|
|
76558
|
+
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
76559
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
76560
|
+
updatedBy?: Maybe<User>;
|
|
76561
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
76562
|
+
};
|
|
76563
|
+
export declare type MercuryChangeParentFocusAreaChangeInput = {
|
|
76564
|
+
focusAreaId: Scalars['ID']['input'];
|
|
76565
|
+
targetFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
76566
|
+
};
|
|
76390
76567
|
export declare type MercuryChangeProposal = Node & {
|
|
76391
76568
|
__typename?: 'MercuryChangeProposal';
|
|
76392
76569
|
comments?: Maybe<MercuryChangeProposalCommentConnection>;
|
|
76393
76570
|
description?: Maybe<Scalars['String']['output']>;
|
|
76394
76571
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
76395
76572
|
id: Scalars['ID']['output'];
|
|
76396
|
-
impact?: Maybe<
|
|
76573
|
+
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
76397
76574
|
name: Scalars['String']['output'];
|
|
76398
76575
|
owner?: Maybe<User>;
|
|
76399
76576
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
@@ -76435,6 +76612,10 @@ export declare type MercuryChangeProposalEdge = {
|
|
|
76435
76612
|
cursor: Scalars['String']['output'];
|
|
76436
76613
|
node?: Maybe<MercuryChangeProposal>;
|
|
76437
76614
|
};
|
|
76615
|
+
export declare type MercuryChangeProposalImpact = {
|
|
76616
|
+
__typename?: 'MercuryChangeProposalImpact';
|
|
76617
|
+
value: Scalars['Int']['output'];
|
|
76618
|
+
};
|
|
76438
76619
|
export declare type MercuryChangeProposalSort = {
|
|
76439
76620
|
field: MercuryChangeProposalSortField;
|
|
76440
76621
|
order: SortOrder;
|
|
@@ -76468,10 +76649,12 @@ export declare enum MercuryChangeSortField {
|
|
|
76468
76649
|
}
|
|
76469
76650
|
export declare enum MercuryChangeType {
|
|
76470
76651
|
ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
|
|
76652
|
+
ChangeParentFocusArea = "CHANGE_PARENT_FOCUS_AREA",
|
|
76471
76653
|
CreateFocusArea = "CREATE_FOCUS_AREA",
|
|
76472
76654
|
MoveFunds = "MOVE_FUNDS",
|
|
76473
76655
|
MovePositions = "MOVE_POSITIONS",
|
|
76474
76656
|
PositionAllocation = "POSITION_ALLOCATION",
|
|
76657
|
+
RenameFocusArea = "RENAME_FOCUS_AREA",
|
|
76475
76658
|
RequestFunds = "REQUEST_FUNDS",
|
|
76476
76659
|
RequestPositions = "REQUEST_POSITIONS"
|
|
76477
76660
|
}
|
|
@@ -76483,6 +76666,7 @@ export declare type MercuryComment = Node & {
|
|
|
76483
76666
|
createdDate: Scalars['String']['output'];
|
|
76484
76667
|
id: Scalars['ID']['output'];
|
|
76485
76668
|
updatedDate: Scalars['String']['output'];
|
|
76669
|
+
uuid: Scalars['ID']['output'];
|
|
76486
76670
|
};
|
|
76487
76671
|
export declare type MercuryCommentConnection = {
|
|
76488
76672
|
__typename?: 'MercuryCommentConnection';
|
|
@@ -77394,6 +77578,7 @@ export declare type MercuryPortfolio = Node & {
|
|
|
77394
77578
|
name: Scalars['String']['output'];
|
|
77395
77579
|
owner?: Maybe<User>;
|
|
77396
77580
|
url?: Maybe<Scalars['String']['output']>;
|
|
77581
|
+
uuid: Scalars['ID']['output'];
|
|
77397
77582
|
};
|
|
77398
77583
|
export declare type MercuryPortfolioAllocations = {
|
|
77399
77584
|
__typename?: 'MercuryPortfolioAllocations';
|
|
@@ -77475,11 +77660,13 @@ export declare enum MercuryProjectTargetDateType {
|
|
|
77475
77660
|
}
|
|
77476
77661
|
export declare type MercuryProposeChangesInput = {
|
|
77477
77662
|
archiveFocusAreas?: InputMaybe<Array<MercuryArchiveFocusAreaChangeInput>>;
|
|
77663
|
+
changeParentFocusAreas?: InputMaybe<Array<MercuryChangeParentFocusAreaChangeInput>>;
|
|
77478
77664
|
changeProposalId: Scalars['ID']['input'];
|
|
77479
77665
|
createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
|
|
77480
77666
|
moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
|
|
77481
77667
|
movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
|
|
77482
77668
|
positionAllocations?: InputMaybe<Array<MercuryPositionAllocationChangeInput>>;
|
|
77669
|
+
renameFocusAreas?: InputMaybe<Array<MercuryRenameFocusAreaChangeInput>>;
|
|
77483
77670
|
requestFunds?: InputMaybe<Array<MercuryRequestFundsChangeInput>>;
|
|
77484
77671
|
requestPositions?: InputMaybe<Array<MercuryRequestPositionsChangeInput>>;
|
|
77485
77672
|
};
|
|
@@ -77831,6 +78018,23 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
|
|
|
77831
78018
|
errors?: Maybe<Array<MutationError>>;
|
|
77832
78019
|
success: Scalars['Boolean']['output'];
|
|
77833
78020
|
};
|
|
78021
|
+
export declare type MercuryRenameFocusAreaChange = MercuryChangeInterface & Node & {
|
|
78022
|
+
__typename?: 'MercuryRenameFocusAreaChange';
|
|
78023
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
78024
|
+
changeType: MercuryChangeType;
|
|
78025
|
+
createdBy?: Maybe<User>;
|
|
78026
|
+
createdDate: Scalars['DateTime']['output'];
|
|
78027
|
+
id: Scalars['ID']['output'];
|
|
78028
|
+
newFocusAreaName: Scalars['String']['output'];
|
|
78029
|
+
oldFocusAreaName: Scalars['String']['output'];
|
|
78030
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
78031
|
+
updatedBy?: Maybe<User>;
|
|
78032
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
78033
|
+
};
|
|
78034
|
+
export declare type MercuryRenameFocusAreaChangeInput = {
|
|
78035
|
+
newFocusAreaName: Scalars['String']['input'];
|
|
78036
|
+
targetFocusAreaId: Scalars['ID']['input'];
|
|
78037
|
+
};
|
|
77834
78038
|
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
77835
78039
|
__typename?: 'MercuryRequestFundsChange';
|
|
77836
78040
|
amount: Scalars['BigDecimal']['output'];
|